In [1]:
"""
Created on Sat Mar 30 07:59:28 2024

@author: marik
""";
In [2]:
import sys
sys.path.append('..')
import pandas as pd
import tomotree as tomo
import matplotlib.pyplot as plt
import numpy as np

Read the data¶

In [3]:
# csv_tof = 'tomoWood_data/3_TOFDefEcc.txt'
# csv_nodes = 'tomoWood_data/3_posRecDefEcc.txt'
csv_tof = 'tomoWood_data/1_TOFHealthy.txt'
csv_nodes = 'tomoWood_data/1_posRecHealthy.txt'
image_name = "tomoWood_data/1_PhotoHealthy.png"
scale = 2.8
shift = np.array([350,300])
df = pd.read_csv(csv_nodes, sep='\t',header=None)
df = df.values*1000
nodes = df.copy()
nodes = nodes - nodes.mean(axis=0)

n2 = nodes.copy() # for aligning to image
n2[:,1] = -n2[:,1]
n2 = n2*scale + shift
im = plt.imread(image_name)
plt.imshow(im,zorder=1)
plt.scatter(*n2.T, s=np.arange(1,17)*5)
plt.title("Node positions. The size of the node corresponds to the node number.")
plt.gca().set_aspect(1);
No description has been provided for this image
In [4]:
df = pd.read_csv(csv_tof, sep='\t',header=None)
df.columns.name = "source node number"
df.columns = range(1,len(df.columns)+1)
df.index = range(1,len(df.index)+1)
plt.imshow(df.values.astype(float), cmap='Greys',
       origin='lower')
plt.gca().set_aspect(0.5)
d = tomo.roll_table(df.values)*1000
No description has been provided for this image
In [5]:
df.plot(subplots=[np.arange(1,9),np.arange(9,17)])
# plt.plot(*nodes.T,'o')
Out[5]:
array([<Axes: >, <Axes: >], dtype=object)
No description has been provided for this image
In [6]:
t=tomo.Tomo(nodes=nodes, times=d.values, nx=31, ny=31)
t.plot(speed_min=1400, speed_max=1600, rays=False)
plt.suptitle("Speed as a mean value of ray speeds")
Out[6]:
Text(0.5, 0.98, 'Speed as a mean value of ray speeds')
No description has been provided for this image
In [7]:
speeds = t.speeds
speeds.style.highlight_max().format(precision=0).highlight_min(color='red')
Out[7]:
Source node 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Receiver node                                
1 nan 1450 1456 1735 1487 1673 1562 1549 1473 1384 1509 1427 1628 1463 1304 2549
2 3150 nan 1369 1400 1462 1517 1387 1521 1537 1431 1491 1436 1545 1562 1434 1569
3 1428 1706 nan 1203 1412 1486 1601 1409 1503 1535 1421 1436 1598 1614 1508 1449
4 1530 1800 1390 nan 1263 1312 1317 1380 1573 1564 1569 1390 1566 1716 1671 1654
5 1353 1411 1791 1405 nan 1345 1153 2177 1673 1611 1449 1526 1592 1830 1720 1644
6 1460 1502 1477 1471 1140 nan 1515 1360 1589 1619 1629 1539 1530 1697 1720 1686
7 1336 1347 1390 1444 1320 1138 nan 3686 2154 1775 1599 1533 1572 1589 1671 1686
8 1553 1338 1337 1579 1590 1324 1401 nan 2228 1844 1618 1642 1463 1579 1482 1677
9 1473 1435 1402 1635 1545 1681 1539 1919 nan 1256 1723 1436 1284 1489 1529 1498
10 1432 1431 1352 1505 1673 1620 1753 1424 3522 nan 1452 1403 1391 1547 1649 1613
11 1583 1455 1421 1482 1636 1840 1614 1541 1259 1994 nan 1411 1330 1540 1535 1707
12 1676 1487 1441 1390 1605 1717 1737 1570 1565 1462 1400 nan 1466 1585 1387 1737
13 1503 1620 1477 1580 1592 1563 1694 1525 1411 1396 1983 1323 nan 1324 1430 1613
14 1497 1563 1491 1541 1559 1697 1571 1563 1517 1562 2409 1810 1504 nan 2459 1821
15 1761 1700 1522 1578 1648 1591 1671 1520 1464 1432 1768 1528 1742 1463 nan 3262
16 1687 1551 1669 1582 1564 1551 1760 1677 1486 1477 1704 1517 1774 1396 1277 nan
In [8]:
diff = (speeds - speeds.T)/2
diff.style.highlight_max().format(precision=0).highlight_min(color='red')
Out[8]:
Source node 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Receiver node                                
1 nan -850 14 102 67 106 113 -2 0 -24 -37 -124 63 -17 -229 431
2 850 nan -169 -200 25 7 20 92 51 0 18 -26 -38 -1 -133 9
3 -14 169 nan -93 -189 4 105 36 50 92 0 -3 60 61 -7 -110
4 -102 200 93 nan -71 -80 -64 -100 -31 29 44 0 -7 87 47 36
5 -67 -25 189 71 nan 102 -83 294 64 -31 -93 -39 0 135 36 40
6 -106 -7 -4 80 -102 nan 188 18 -46 -1 -105 -89 -17 0 65 67
7 -113 -20 -105 64 83 -188 nan 1142 307 11 -8 -102 -61 9 0 -37
8 2 -92 -36 100 -294 -18 -1142 nan 154 210 39 36 -31 8 -19 0
9 0 -51 -50 31 -64 46 -307 -154 nan -1133 232 -65 -64 -14 33 6
10 24 0 -92 -29 31 1 -11 -210 1133 nan -271 -29 -3 -7 109 68
11 37 -18 0 -44 93 105 8 -39 -232 271 nan 6 -326 -434 -116 1
12 124 26 3 0 39 89 102 -36 65 29 -6 nan 71 -112 -70 110
13 -63 38 -60 7 0 17 61 31 64 3 326 -71 nan -90 -156 -80
14 17 1 -61 -87 -135 0 -9 -8 14 7 434 112 90 nan 498 213
15 229 133 7 -47 -36 -65 0 19 -33 -109 116 70 156 -498 nan 992
16 -431 -9 110 -36 -40 -67 37 0 -6 -68 -1 -110 80 -213 -992 nan
In [9]:
t.check_triangle_inequality()
Out[9]:
'Triangle inequality failed 98 out of 3360 which is 3%.'
In [10]:
ax = t.plot_angular_dependence()
ax.set(ylim=(None,2000))
Out[10]:
[(1010.6944579547201, 2000.0)]
No description has been provided for this image

EBSI method¶

In [11]:
t1=tomo.Tomo(nodes=nodes, times=d.values,nx=61,ny=61)
t1.do_EBSI_method()
Out[11]:
{<tomotree.Ray at 0x729829fc8080>: array([<tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>], dtype=object),
 <tomotree.Ray at 0x72982aaf9e20>: array([<tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f91160>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91cd0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f92840>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f933b0>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f93f20>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8b00>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>], dtype=object),
 <tomotree.Ray at 0x72982a15f4d0>: array([<tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f91160>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f91cd0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92840>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f933b0>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93f20>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db8ad0>,
        <tomotree.Cell object at 0x729829db8b00>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db9640>,
        <tomotree.Cell object at 0x729829db9670>,
        <tomotree.Cell object at 0x729829db96a0>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829dba1e0>,
        <tomotree.Cell object at 0x729829dba210>,
        <tomotree.Cell object at 0x729829dba240>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dbad80>,
        <tomotree.Cell object at 0x729829dbadb0>,
        <tomotree.Cell object at 0x729829dbade0>,
        <tomotree.Cell object at 0x729829dbae10>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb8f0>,
        <tomotree.Cell object at 0x729829dbb920>,
        <tomotree.Cell object at 0x729829dbb950>,
        <tomotree.Cell object at 0x729829dbb980>,
        <tomotree.Cell object at 0x729829dbb9b0>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dd84d0>,
        <tomotree.Cell object at 0x729829dd8500>,
        <tomotree.Cell object at 0x729829dd8530>,
        <tomotree.Cell object at 0x729829dd8560>,
        <tomotree.Cell object at 0x729829dd8590>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd9070>,
        <tomotree.Cell object at 0x729829dd90a0>,
        <tomotree.Cell object at 0x729829dd90d0>,
        <tomotree.Cell object at 0x729829dd9100>,
        <tomotree.Cell object at 0x729829dd9130>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9c10>,
        <tomotree.Cell object at 0x729829dd9c40>,
        <tomotree.Cell object at 0x729829dd9c70>,
        <tomotree.Cell object at 0x729829dd9ca0>,
        <tomotree.Cell object at 0x729829dd9cd0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dda7e0>,
        <tomotree.Cell object at 0x729829dda810>,
        <tomotree.Cell object at 0x729829dda840>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddb380>,
        <tomotree.Cell object at 0x729829ddb3b0>,
        <tomotree.Cell object at 0x729829ddb3e0>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddbf80>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a15fe60>: array([<tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfd7f0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a15fdd0>: array([<tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>], dtype=object),
 <tomotree.Ray at 0x72982a15ffe0>: array([<tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>], dtype=object),
 <tomotree.Ray at 0x72982a15fb00>: array([<tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a15f590>: array([<tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>], dtype=object),
 <tomotree.Ray at 0x72982a036ba0>: array([<tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>], dtype=object),
 <tomotree.Ray at 0x72982a037500>: array([<tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>], dtype=object),
 <tomotree.Ray at 0x72982a035fd0>: array([<tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>], dtype=object),
 <tomotree.Ray at 0x72982a034830>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>], dtype=object),
 <tomotree.Ray at 0x72982a035400>: array([<tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08ca40>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08d550>,
        <tomotree.Cell object at 0x72982a08d580>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08e090>,
        <tomotree.Cell object at 0x72982a08e0c0>,
        <tomotree.Cell object at 0x72982a08e0f0>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08ebd0>,
        <tomotree.Cell object at 0x72982a08ec00>,
        <tomotree.Cell object at 0x72982a08ec30>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08f710>,
        <tomotree.Cell object at 0x72982a08f740>,
        <tomotree.Cell object at 0x72982a08f770>,
        <tomotree.Cell object at 0x72982a08f7a0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x729829eb8290>,
        <tomotree.Cell object at 0x729829eb82c0>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8e00>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb9940>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>], dtype=object),
 <tomotree.Ray at 0x72982a034fb0>: array([<tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>], dtype=object),
 <tomotree.Ray at 0x72982a034e00>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>], dtype=object),
 <tomotree.Ray at 0x72982a15d880>: array([<tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>], dtype=object),
 <tomotree.Ray at 0x72982a0354c0>: array([<tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>], dtype=object),
 <tomotree.Ray at 0x72982a035730>: array([<tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8b00>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db9670>,
        <tomotree.Cell object at 0x729829db96a0>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829dba1e0>,
        <tomotree.Cell object at 0x729829dba210>,
        <tomotree.Cell object at 0x729829dba240>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dbad80>,
        <tomotree.Cell object at 0x729829dbadb0>,
        <tomotree.Cell object at 0x729829dbade0>,
        <tomotree.Cell object at 0x729829dbae10>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb8f0>,
        <tomotree.Cell object at 0x729829dbb920>,
        <tomotree.Cell object at 0x729829dbb950>,
        <tomotree.Cell object at 0x729829dbb980>,
        <tomotree.Cell object at 0x729829dbb9b0>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dd84d0>,
        <tomotree.Cell object at 0x729829dd8500>,
        <tomotree.Cell object at 0x729829dd8530>,
        <tomotree.Cell object at 0x729829dd8560>,
        <tomotree.Cell object at 0x729829dd8590>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd9040>,
        <tomotree.Cell object at 0x729829dd9070>,
        <tomotree.Cell object at 0x729829dd90a0>,
        <tomotree.Cell object at 0x729829dd90d0>,
        <tomotree.Cell object at 0x729829dd9100>,
        <tomotree.Cell object at 0x729829dd9130>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd9be0>,
        <tomotree.Cell object at 0x729829dd9c10>,
        <tomotree.Cell object at 0x729829dd9c40>,
        <tomotree.Cell object at 0x729829dd9c70>,
        <tomotree.Cell object at 0x729829dd9ca0>,
        <tomotree.Cell object at 0x729829dd9cd0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dda780>,
        <tomotree.Cell object at 0x729829dda7b0>,
        <tomotree.Cell object at 0x729829dda7e0>,
        <tomotree.Cell object at 0x729829dda810>,
        <tomotree.Cell object at 0x729829dda840>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddb350>,
        <tomotree.Cell object at 0x729829ddb380>,
        <tomotree.Cell object at 0x729829ddb3b0>,
        <tomotree.Cell object at 0x729829ddb3e0>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddbef0>,
        <tomotree.Cell object at 0x729829ddbf20>,
        <tomotree.Cell object at 0x729829ddbf50>,
        <tomotree.Cell object at 0x729829ddbf80>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfcb30>,
        <tomotree.Cell object at 0x729829dfcb60>,
        <tomotree.Cell object at 0x729829dfcb90>,
        <tomotree.Cell object at 0x729829dfcbc0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>], dtype=object),
 <tomotree.Ray at 0x72982a036db0>: array([<tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db96a0>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829dba240>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dbadb0>,
        <tomotree.Cell object at 0x729829dbade0>,
        <tomotree.Cell object at 0x729829dbae10>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb950>,
        <tomotree.Cell object at 0x729829dbb980>,
        <tomotree.Cell object at 0x729829dbb9b0>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dd8500>,
        <tomotree.Cell object at 0x729829dd8530>,
        <tomotree.Cell object at 0x729829dd8560>,
        <tomotree.Cell object at 0x729829dd8590>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd90a0>,
        <tomotree.Cell object at 0x729829dd90d0>,
        <tomotree.Cell object at 0x729829dd9100>,
        <tomotree.Cell object at 0x729829dd9130>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9c40>,
        <tomotree.Cell object at 0x729829dd9c70>,
        <tomotree.Cell object at 0x729829dd9ca0>,
        <tomotree.Cell object at 0x729829dd9cd0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda7e0>,
        <tomotree.Cell object at 0x729829dda810>,
        <tomotree.Cell object at 0x729829dda840>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb380>,
        <tomotree.Cell object at 0x729829ddb3b0>,
        <tomotree.Cell object at 0x729829ddb3e0>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddbf20>,
        <tomotree.Cell object at 0x729829ddbf50>,
        <tomotree.Cell object at 0x729829ddbf80>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfcb00>,
        <tomotree.Cell object at 0x729829dfcb30>,
        <tomotree.Cell object at 0x729829dfcb60>,
        <tomotree.Cell object at 0x729829dfcb90>,
        <tomotree.Cell object at 0x729829dfcbc0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfd6d0>,
        <tomotree.Cell object at 0x729829dfd700>,
        <tomotree.Cell object at 0x729829dfd730>,
        <tomotree.Cell object at 0x729829dfd760>,
        <tomotree.Cell object at 0x729829dfd790>,
        <tomotree.Cell object at 0x729829dfd7c0>,
        <tomotree.Cell object at 0x729829dfd7f0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a034140>: array([<tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>], dtype=object),
 <tomotree.Ray at 0x72982a035670>: array([<tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>], dtype=object),
 <tomotree.Ray at 0x72982a036810>: array([<tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>], dtype=object),
 <tomotree.Ray at 0x72982a037da0>: array([<tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>], dtype=object),
 <tomotree.Ray at 0x72982a036060>: array([<tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>], dtype=object),
 <tomotree.Ray at 0x72982a034a10>: array([<tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>], dtype=object),
 <tomotree.Ray at 0x72982a0366f0>: array([<tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>], dtype=object),
 <tomotree.Ray at 0x72982a034410>: array([<tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>], dtype=object),
 <tomotree.Ray at 0x72982a035280>: array([<tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>], dtype=object),
 <tomotree.Ray at 0x72982a037c50>: array([<tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>], dtype=object),
 <tomotree.Ray at 0x72982a034380>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>], dtype=object),
 <tomotree.Ray at 0x72982a0356d0>: array([<tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f91160>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91cd0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f92840>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f933b0>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f93f20>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8b00>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>], dtype=object),
 <tomotree.Ray at 0x72982a037e90>: array([<tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>], dtype=object),
 <tomotree.Ray at 0x72982a029eb0>: array([<tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfcbc0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>], dtype=object),
 <tomotree.Ray at 0x72982a028da0>: array([<tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddbf80>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfcb60>,
        <tomotree.Cell object at 0x729829dfcb90>,
        <tomotree.Cell object at 0x729829dfcbc0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfd700>,
        <tomotree.Cell object at 0x729829dfd730>,
        <tomotree.Cell object at 0x729829dfd760>,
        <tomotree.Cell object at 0x729829dfd790>,
        <tomotree.Cell object at 0x729829dfd7c0>,
        <tomotree.Cell object at 0x729829dfd7f0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a02b860>: array([<tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd790>,
        <tomotree.Cell object at 0x729829dfd7c0>,
        <tomotree.Cell object at 0x729829dfd7f0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>], dtype=object),
 <tomotree.Ray at 0x72982a0289b0>: array([<tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>], dtype=object),
 <tomotree.Ray at 0x72982a02a810>: array([<tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>], dtype=object),
 <tomotree.Ray at 0x72982a02b620>: array([<tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>], dtype=object),
 <tomotree.Ray at 0x72982a029820>: array([<tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>], dtype=object),
 <tomotree.Ray at 0x72982a02a840>: array([<tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>], dtype=object),
 <tomotree.Ray at 0x72982a02b650>: array([<tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>], dtype=object),
 <tomotree.Ray at 0x72982a029250>: array([<tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>], dtype=object),
 <tomotree.Ray at 0x72982a02b890>: array([<tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>], dtype=object),
 <tomotree.Ray at 0x72982a02b7a0>: array([<tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>], dtype=object),
 <tomotree.Ray at 0x72982a02aa20>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f91160>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f91cd0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92840>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f933b0>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>], dtype=object),
 <tomotree.Ray at 0x72982a0347d0>: array([<tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f91160>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f91cd0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92840>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f933b0>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93f20>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db8ad0>,
        <tomotree.Cell object at 0x729829db8b00>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db9640>,
        <tomotree.Cell object at 0x729829db9670>,
        <tomotree.Cell object at 0x729829db96a0>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829dba1e0>,
        <tomotree.Cell object at 0x729829dba210>,
        <tomotree.Cell object at 0x729829dba240>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dbad80>,
        <tomotree.Cell object at 0x729829dbadb0>,
        <tomotree.Cell object at 0x729829dbade0>,
        <tomotree.Cell object at 0x729829dbae10>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb8f0>,
        <tomotree.Cell object at 0x729829dbb920>,
        <tomotree.Cell object at 0x729829dbb950>,
        <tomotree.Cell object at 0x729829dbb980>,
        <tomotree.Cell object at 0x729829dbb9b0>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dd84d0>,
        <tomotree.Cell object at 0x729829dd8500>,
        <tomotree.Cell object at 0x729829dd8530>,
        <tomotree.Cell object at 0x729829dd8560>,
        <tomotree.Cell object at 0x729829dd8590>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd9070>,
        <tomotree.Cell object at 0x729829dd90a0>,
        <tomotree.Cell object at 0x729829dd90d0>,
        <tomotree.Cell object at 0x729829dd9100>,
        <tomotree.Cell object at 0x729829dd9130>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9c10>,
        <tomotree.Cell object at 0x729829dd9c40>,
        <tomotree.Cell object at 0x729829dd9c70>,
        <tomotree.Cell object at 0x729829dd9ca0>,
        <tomotree.Cell object at 0x729829dd9cd0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dda7e0>,
        <tomotree.Cell object at 0x729829dda810>,
        <tomotree.Cell object at 0x729829dda840>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddb380>,
        <tomotree.Cell object at 0x729829ddb3b0>,
        <tomotree.Cell object at 0x729829ddb3e0>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddbf80>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a02ac60>: array([<tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8b00>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db9670>,
        <tomotree.Cell object at 0x729829db96a0>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829dba1e0>,
        <tomotree.Cell object at 0x729829dba210>,
        <tomotree.Cell object at 0x729829dba240>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dbad80>,
        <tomotree.Cell object at 0x729829dbadb0>,
        <tomotree.Cell object at 0x729829dbade0>,
        <tomotree.Cell object at 0x729829dbae10>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb8f0>,
        <tomotree.Cell object at 0x729829dbb920>,
        <tomotree.Cell object at 0x729829dbb950>,
        <tomotree.Cell object at 0x729829dbb980>,
        <tomotree.Cell object at 0x729829dbb9b0>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dd84d0>,
        <tomotree.Cell object at 0x729829dd8500>,
        <tomotree.Cell object at 0x729829dd8530>,
        <tomotree.Cell object at 0x729829dd8560>,
        <tomotree.Cell object at 0x729829dd8590>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd9040>,
        <tomotree.Cell object at 0x729829dd9070>,
        <tomotree.Cell object at 0x729829dd90a0>,
        <tomotree.Cell object at 0x729829dd90d0>,
        <tomotree.Cell object at 0x729829dd9100>,
        <tomotree.Cell object at 0x729829dd9130>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd9be0>,
        <tomotree.Cell object at 0x729829dd9c10>,
        <tomotree.Cell object at 0x729829dd9c40>,
        <tomotree.Cell object at 0x729829dd9c70>,
        <tomotree.Cell object at 0x729829dd9ca0>,
        <tomotree.Cell object at 0x729829dd9cd0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dda780>,
        <tomotree.Cell object at 0x729829dda7b0>,
        <tomotree.Cell object at 0x729829dda7e0>,
        <tomotree.Cell object at 0x729829dda810>,
        <tomotree.Cell object at 0x729829dda840>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddb350>,
        <tomotree.Cell object at 0x729829ddb380>,
        <tomotree.Cell object at 0x729829ddb3b0>,
        <tomotree.Cell object at 0x729829ddb3e0>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddbef0>,
        <tomotree.Cell object at 0x729829ddbf20>,
        <tomotree.Cell object at 0x729829ddbf50>,
        <tomotree.Cell object at 0x729829ddbf80>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfcb30>,
        <tomotree.Cell object at 0x729829dfcb60>,
        <tomotree.Cell object at 0x729829dfcb90>,
        <tomotree.Cell object at 0x729829dfcbc0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>], dtype=object),
 <tomotree.Ray at 0x72982a02a7b0>: array([<tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfcbc0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>], dtype=object),
 <tomotree.Ray at 0x72982a02ad20>: array([<tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>], dtype=object),
 <tomotree.Ray at 0x72982a02af00>: array([<tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>], dtype=object),
 <tomotree.Ray at 0x72982a0507a0>: array([<tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>,
        <tomotree.Cell object at 0x729829dfdca0>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>], dtype=object),
 <tomotree.Ray at 0x72982a0525a0>: array([<tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>], dtype=object),
 <tomotree.Ray at 0x72982a051b20>: array([<tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>], dtype=object),
 <tomotree.Ray at 0x72982a0513a0>: array([<tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>], dtype=object),
 <tomotree.Ray at 0x72982a050590>: array([<tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>], dtype=object),
 <tomotree.Ray at 0x72982a051bb0>: array([<tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a052180>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a052d50>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a0516a0>: array([<tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a051400>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f91160>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f91cd0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92840>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f933b0>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db96a0>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829dba240>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dbade0>,
        <tomotree.Cell object at 0x729829dbae10>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb980>,
        <tomotree.Cell object at 0x729829dbb9b0>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dd8560>,
        <tomotree.Cell object at 0x729829dd8590>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd9100>,
        <tomotree.Cell object at 0x729829dd9130>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9ca0>,
        <tomotree.Cell object at 0x729829dd9cd0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dda840>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a028890>: array([<tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfd7f0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a052a50>: array([<tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db96a0>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829dba240>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dbadb0>,
        <tomotree.Cell object at 0x729829dbade0>,
        <tomotree.Cell object at 0x729829dbae10>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb950>,
        <tomotree.Cell object at 0x729829dbb980>,
        <tomotree.Cell object at 0x729829dbb9b0>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dd8500>,
        <tomotree.Cell object at 0x729829dd8530>,
        <tomotree.Cell object at 0x729829dd8560>,
        <tomotree.Cell object at 0x729829dd8590>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd90a0>,
        <tomotree.Cell object at 0x729829dd90d0>,
        <tomotree.Cell object at 0x729829dd9100>,
        <tomotree.Cell object at 0x729829dd9130>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9c40>,
        <tomotree.Cell object at 0x729829dd9c70>,
        <tomotree.Cell object at 0x729829dd9ca0>,
        <tomotree.Cell object at 0x729829dd9cd0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda7e0>,
        <tomotree.Cell object at 0x729829dda810>,
        <tomotree.Cell object at 0x729829dda840>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb380>,
        <tomotree.Cell object at 0x729829ddb3b0>,
        <tomotree.Cell object at 0x729829ddb3e0>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddbf20>,
        <tomotree.Cell object at 0x729829ddbf50>,
        <tomotree.Cell object at 0x729829ddbf80>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfcb00>,
        <tomotree.Cell object at 0x729829dfcb30>,
        <tomotree.Cell object at 0x729829dfcb60>,
        <tomotree.Cell object at 0x729829dfcb90>,
        <tomotree.Cell object at 0x729829dfcbc0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfd6d0>,
        <tomotree.Cell object at 0x729829dfd700>,
        <tomotree.Cell object at 0x729829dfd730>,
        <tomotree.Cell object at 0x729829dfd760>,
        <tomotree.Cell object at 0x729829dfd790>,
        <tomotree.Cell object at 0x729829dfd7c0>,
        <tomotree.Cell object at 0x729829dfd7f0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a052480>: array([<tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddbf80>,
        <tomotree.Cell object at 0x729829ddbfb0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfcb60>,
        <tomotree.Cell object at 0x729829dfcb90>,
        <tomotree.Cell object at 0x729829dfcbc0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfd700>,
        <tomotree.Cell object at 0x729829dfd730>,
        <tomotree.Cell object at 0x729829dfd760>,
        <tomotree.Cell object at 0x729829dfd790>,
        <tomotree.Cell object at 0x729829dfd7c0>,
        <tomotree.Cell object at 0x729829dfd7f0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a052a80>: array([<tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>], dtype=object),
 <tomotree.Ray at 0x72982a050470>: array([<tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>], dtype=object),
 <tomotree.Ray at 0x72982a0500e0>: array([<tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>,
        <tomotree.Cell object at 0x729829dfdca0>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>,
        <tomotree.Cell object at 0x729829dfdd90>,
        <tomotree.Cell object at 0x729829dfddc0>], dtype=object),
 <tomotree.Ray at 0x72982a050d70>: array([<tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8380>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd8e60>,
        <tomotree.Cell object at 0x729829dd8e90>,
        <tomotree.Cell object at 0x729829dd8ec0>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dd99a0>,
        <tomotree.Cell object at 0x729829dd99d0>,
        <tomotree.Cell object at 0x729829dd9a00>,
        <tomotree.Cell object at 0x729829dd9a30>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829dda510>,
        <tomotree.Cell object at 0x729829dda540>,
        <tomotree.Cell object at 0x729829dda570>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb080>,
        <tomotree.Cell object at 0x729829ddb0b0>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829ddbbc0>,
        <tomotree.Cell object at 0x729829ddbbf0>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfc770>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>,
        <tomotree.Cell object at 0x729829dfd2b0>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>,
        <tomotree.Cell object at 0x729829dfdca0>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>,
        <tomotree.Cell object at 0x729829dfdd90>,
        <tomotree.Cell object at 0x729829dfddc0>], dtype=object),
 <tomotree.Ray at 0x72982a052d20>: array([<tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>,
        <tomotree.Cell object at 0x729829dfdca0>,
        <tomotree.Cell object at 0x729829dfdcd0>], dtype=object),
 <tomotree.Ray at 0x72982a0531d0>: array([<tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>], dtype=object),
 <tomotree.Ray at 0x72982a0520f0>: array([<tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>], dtype=object),
 <tomotree.Ray at 0x72982a0533e0>: array([<tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>], dtype=object),
 <tomotree.Ray at 0x72982a053440>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a0534a0>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a053500>: array([<tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a053560>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a052210>: array([<tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>], dtype=object),
 <tomotree.Ray at 0x72982a053620>: array([<tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>], dtype=object),
 <tomotree.Ray at 0x72982a053680>: array([<tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfcbf0>,
        <tomotree.Cell object at 0x729829dfcc20>,
        <tomotree.Cell object at 0x729829dfcc50>,
        <tomotree.Cell object at 0x729829dfcc80>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd790>,
        <tomotree.Cell object at 0x729829dfd7c0>,
        <tomotree.Cell object at 0x729829dfd7f0>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>], dtype=object),
 <tomotree.Ray at 0x72982a0536e0>: array([<tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd820>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>], dtype=object),
 <tomotree.Ray at 0x72982a053740>: array([<tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>], dtype=object),
 <tomotree.Ray at 0x72982a0537a0>: array([<tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829ddbbc0>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>,
        <tomotree.Cell object at 0x729829dfdd90>], dtype=object),
 <tomotree.Ray at 0x72982a053800>: array([<tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbacc0>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dbb830>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8380>,
        <tomotree.Cell object at 0x729829dd83b0>,
        <tomotree.Cell object at 0x729829dd83e0>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd8e60>,
        <tomotree.Cell object at 0x729829dd8e90>,
        <tomotree.Cell object at 0x729829dd8ec0>,
        <tomotree.Cell object at 0x729829dd8ef0>,
        <tomotree.Cell object at 0x729829dd8f20>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dd99a0>,
        <tomotree.Cell object at 0x729829dd99d0>,
        <tomotree.Cell object at 0x729829dd9a00>,
        <tomotree.Cell object at 0x729829dd9a30>,
        <tomotree.Cell object at 0x729829dd9a60>,
        <tomotree.Cell object at 0x729829dd9a90>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829dda510>,
        <tomotree.Cell object at 0x729829dda540>,
        <tomotree.Cell object at 0x729829dda570>,
        <tomotree.Cell object at 0x729829dda5a0>,
        <tomotree.Cell object at 0x729829dda5d0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb080>,
        <tomotree.Cell object at 0x729829ddb0b0>,
        <tomotree.Cell object at 0x729829ddb0e0>,
        <tomotree.Cell object at 0x729829ddb110>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829ddbbc0>,
        <tomotree.Cell object at 0x729829ddbbf0>,
        <tomotree.Cell object at 0x729829ddbc20>,
        <tomotree.Cell object at 0x729829ddbc50>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfc770>,
        <tomotree.Cell object at 0x729829dfc7a0>,
        <tomotree.Cell object at 0x729829dfc7d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>,
        <tomotree.Cell object at 0x729829dfd2b0>,
        <tomotree.Cell object at 0x729829dfd2e0>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>,
        <tomotree.Cell object at 0x729829dfdd90>,
        <tomotree.Cell object at 0x729829dfddc0>,
        <tomotree.Cell object at 0x729829dfddf0>], dtype=object),
 <tomotree.Ray at 0x72982a053860>: array([<tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbacc0>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dbb830>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8380>,
        <tomotree.Cell object at 0x729829dd83b0>,
        <tomotree.Cell object at 0x729829dd83e0>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd8e60>,
        <tomotree.Cell object at 0x729829dd8e90>,
        <tomotree.Cell object at 0x729829dd8ec0>,
        <tomotree.Cell object at 0x729829dd8ef0>,
        <tomotree.Cell object at 0x729829dd8f20>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dd99a0>,
        <tomotree.Cell object at 0x729829dd99d0>,
        <tomotree.Cell object at 0x729829dd9a00>,
        <tomotree.Cell object at 0x729829dd9a30>,
        <tomotree.Cell object at 0x729829dd9a60>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829dda510>,
        <tomotree.Cell object at 0x729829dda540>,
        <tomotree.Cell object at 0x729829dda570>,
        <tomotree.Cell object at 0x729829dda5a0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb080>,
        <tomotree.Cell object at 0x729829ddb0b0>,
        <tomotree.Cell object at 0x729829ddb0e0>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829ddbbc0>,
        <tomotree.Cell object at 0x729829ddbbf0>,
        <tomotree.Cell object at 0x729829ddbc20>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfc770>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>], dtype=object),
 <tomotree.Ray at 0x72982a0538c0>: array([<tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd8e60>,
        <tomotree.Cell object at 0x729829dd8e90>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dd99a0>,
        <tomotree.Cell object at 0x729829dd99d0>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829dda510>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>], dtype=object),
 <tomotree.Ray at 0x72982a053920>: array([<tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>], dtype=object),
 <tomotree.Ray at 0x72982a053980>: array([<tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>], dtype=object),
 <tomotree.Ray at 0x72982a0539e0>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>], dtype=object),
 <tomotree.Ray at 0x72982a053a40>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfd100>], dtype=object),
 <tomotree.Ray at 0x72982a053aa0>: array([<tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfd100>], dtype=object),
 <tomotree.Ray at 0x72982a053b00>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>], dtype=object),
 <tomotree.Ray at 0x72982a0535c0>: array([<tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>], dtype=object),
 <tomotree.Ray at 0x72982a053bc0>: array([<tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>], dtype=object),
 <tomotree.Ray at 0x72982a053c20>: array([<tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>], dtype=object),
 <tomotree.Ray at 0x72982a053c80>: array([<tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfccb0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd850>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>,
        <tomotree.Cell object at 0x729829dfdca0>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>], dtype=object),
 <tomotree.Ray at 0x72982a053ce0>: array([<tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>,
        <tomotree.Cell object at 0x729829dfdca0>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>,
        <tomotree.Cell object at 0x729829dfdd90>,
        <tomotree.Cell object at 0x729829dfddc0>], dtype=object),
 <tomotree.Ray at 0x72982a053d40>: array([<tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829ddbbc0>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>,
        <tomotree.Cell object at 0x729829dfdd90>], dtype=object),
 <tomotree.Ray at 0x72982a053da0>: array([<tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>], dtype=object),
 <tomotree.Ray at 0x72982a053e00>: array([<tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbacc0>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dbb830>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8380>], dtype=object),
 <tomotree.Ray at 0x72982a053e60>: array([<tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>], dtype=object),
 <tomotree.Ray at 0x72982a1d94c0>: array([<tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>], dtype=object),
 <tomotree.Ray at 0x72982a1da600>: array([<tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>], dtype=object),
 <tomotree.Ray at 0x72982bb10170>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>], dtype=object),
 <tomotree.Ray at 0x72982a053ec0>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>], dtype=object),
 <tomotree.Ray at 0x72982a053fe0>: array([<tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>], dtype=object),
 <tomotree.Ray at 0x72982a070080>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>], dtype=object),
 <tomotree.Ray at 0x72982a053b60>: array([<tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a070140>: array([<tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>], dtype=object),
 <tomotree.Ray at 0x72982a0701a0>: array([<tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>], dtype=object),
 <tomotree.Ray at 0x72982a070200>: array([<tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd880>,
        <tomotree.Cell object at 0x729829dfd8b0>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>], dtype=object),
 <tomotree.Ray at 0x72982a070260>: array([<tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8380>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd8e60>,
        <tomotree.Cell object at 0x729829dd8e90>,
        <tomotree.Cell object at 0x729829dd8ec0>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dd99a0>,
        <tomotree.Cell object at 0x729829dd99d0>,
        <tomotree.Cell object at 0x729829dd9a00>,
        <tomotree.Cell object at 0x729829dd9a30>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829dda510>,
        <tomotree.Cell object at 0x729829dda540>,
        <tomotree.Cell object at 0x729829dda570>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb080>,
        <tomotree.Cell object at 0x729829ddb0b0>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829ddbbc0>,
        <tomotree.Cell object at 0x729829ddbbf0>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfc770>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>,
        <tomotree.Cell object at 0x729829dfd2b0>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>,
        <tomotree.Cell object at 0x729829dfdca0>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>,
        <tomotree.Cell object at 0x729829dfdd90>,
        <tomotree.Cell object at 0x729829dfddc0>], dtype=object),
 <tomotree.Ray at 0x72982a0702c0>: array([<tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbacc0>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dbb830>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8380>,
        <tomotree.Cell object at 0x729829dd83b0>,
        <tomotree.Cell object at 0x729829dd83e0>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd8e60>,
        <tomotree.Cell object at 0x729829dd8e90>,
        <tomotree.Cell object at 0x729829dd8ec0>,
        <tomotree.Cell object at 0x729829dd8ef0>,
        <tomotree.Cell object at 0x729829dd8f20>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dd99a0>,
        <tomotree.Cell object at 0x729829dd99d0>,
        <tomotree.Cell object at 0x729829dd9a00>,
        <tomotree.Cell object at 0x729829dd9a30>,
        <tomotree.Cell object at 0x729829dd9a60>,
        <tomotree.Cell object at 0x729829dd9a90>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829dda510>,
        <tomotree.Cell object at 0x729829dda540>,
        <tomotree.Cell object at 0x729829dda570>,
        <tomotree.Cell object at 0x729829dda5a0>,
        <tomotree.Cell object at 0x729829dda5d0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb080>,
        <tomotree.Cell object at 0x729829ddb0b0>,
        <tomotree.Cell object at 0x729829ddb0e0>,
        <tomotree.Cell object at 0x729829ddb110>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829ddbbc0>,
        <tomotree.Cell object at 0x729829ddbbf0>,
        <tomotree.Cell object at 0x729829ddbc20>,
        <tomotree.Cell object at 0x729829ddbc50>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfc770>,
        <tomotree.Cell object at 0x729829dfc7a0>,
        <tomotree.Cell object at 0x729829dfc7d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>,
        <tomotree.Cell object at 0x729829dfd2b0>,
        <tomotree.Cell object at 0x729829dfd2e0>,
        <tomotree.Cell object at 0x729829dfdcd0>,
        <tomotree.Cell object at 0x729829dfdd00>,
        <tomotree.Cell object at 0x729829dfdd30>,
        <tomotree.Cell object at 0x729829dfdd60>,
        <tomotree.Cell object at 0x729829dfdd90>,
        <tomotree.Cell object at 0x729829dfddc0>,
        <tomotree.Cell object at 0x729829dfddf0>], dtype=object),
 <tomotree.Ray at 0x72982a070320>: array([<tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>], dtype=object),
 <tomotree.Ray at 0x72982a070380>: array([<tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>], dtype=object),
 <tomotree.Ray at 0x72982a0703e0>: array([<tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>], dtype=object),
 <tomotree.Ray at 0x72982a070440>: array([<tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>], dtype=object),
 <tomotree.Ray at 0x72982a0704a0>: array([<tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8110>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a070500>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a070560>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a0705c0>: array([<tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a070620>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a0700e0>: array([<tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>], dtype=object),
 <tomotree.Ray at 0x72982a0706e0>: array([<tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>], dtype=object),
 <tomotree.Ray at 0x72982a070740>: array([<tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>], dtype=object),
 <tomotree.Ray at 0x72982a0707a0>: array([<tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfcce0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>], dtype=object),
 <tomotree.Ray at 0x72982a070800>: array([<tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>,
        <tomotree.Cell object at 0x729829dfdbe0>,
        <tomotree.Cell object at 0x729829dfdc10>,
        <tomotree.Cell object at 0x729829dfdc40>,
        <tomotree.Cell object at 0x729829dfdc70>,
        <tomotree.Cell object at 0x729829dfdca0>,
        <tomotree.Cell object at 0x729829dfdcd0>], dtype=object),
 <tomotree.Ray at 0x72982a070860>: array([<tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbacc0>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dbb830>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8380>,
        <tomotree.Cell object at 0x729829dd83b0>,
        <tomotree.Cell object at 0x729829dd83e0>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd8e60>,
        <tomotree.Cell object at 0x729829dd8e90>,
        <tomotree.Cell object at 0x729829dd8ec0>,
        <tomotree.Cell object at 0x729829dd8ef0>,
        <tomotree.Cell object at 0x729829dd8f20>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dd99a0>,
        <tomotree.Cell object at 0x729829dd99d0>,
        <tomotree.Cell object at 0x729829dd9a00>,
        <tomotree.Cell object at 0x729829dd9a30>,
        <tomotree.Cell object at 0x729829dd9a60>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829dda510>,
        <tomotree.Cell object at 0x729829dda540>,
        <tomotree.Cell object at 0x729829dda570>,
        <tomotree.Cell object at 0x729829dda5a0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb080>,
        <tomotree.Cell object at 0x729829ddb0b0>,
        <tomotree.Cell object at 0x729829ddb0e0>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829ddbbc0>,
        <tomotree.Cell object at 0x729829ddbbf0>,
        <tomotree.Cell object at 0x729829ddbc20>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfc710>,
        <tomotree.Cell object at 0x729829dfc740>,
        <tomotree.Cell object at 0x729829dfc770>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>,
        <tomotree.Cell object at 0x729829dfd220>,
        <tomotree.Cell object at 0x729829dfd250>,
        <tomotree.Cell object at 0x729829dfd280>], dtype=object),
 <tomotree.Ray at 0x72982a0708c0>: array([<tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbacc0>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dbb800>,
        <tomotree.Cell object at 0x729829dbb830>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8380>], dtype=object),
 <tomotree.Ray at 0x72982a070920>: array([<tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>], dtype=object),
 <tomotree.Ray at 0x72982a070980>: array([<tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>], dtype=object),
 <tomotree.Ray at 0x72982a0709e0>: array([<tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb98b0>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829eba450>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>], dtype=object),
 <tomotree.Ray at 0x72982a070a40>: array([<tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08d2e0>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08de50>,
        <tomotree.Cell object at 0x72982a08de80>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08e9c0>,
        <tomotree.Cell object at 0x72982a08e9f0>,
        <tomotree.Cell object at 0x72982a08ea20>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08f560>,
        <tomotree.Cell object at 0x72982a08f590>,
        <tomotree.Cell object at 0x72982a08f5c0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8110>,
        <tomotree.Cell object at 0x729829eb8140>,
        <tomotree.Cell object at 0x729829eb8170>,
        <tomotree.Cell object at 0x729829eb81a0>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb8d10>,
        <tomotree.Cell object at 0x729829eb8d40>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb98b0>,
        <tomotree.Cell object at 0x729829eb98e0>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829eba450>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>], dtype=object),
 <tomotree.Ray at 0x72982a070aa0>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>], dtype=object),
 <tomotree.Ray at 0x72982a070b00>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>], dtype=object),
 <tomotree.Ray at 0x72982a070b60>: array([<tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>], dtype=object),
 <tomotree.Ray at 0x72982a070bc0>: array([<tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>], dtype=object),
 <tomotree.Ray at 0x72982a070680>: array([<tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>], dtype=object),
 <tomotree.Ray at 0x72982a070c80>: array([<tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>], dtype=object),
 <tomotree.Ray at 0x72982a070ce0>: array([<tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>], dtype=object),
 <tomotree.Ray at 0x72982a070d40>: array([<tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>], dtype=object),
 <tomotree.Ray at 0x72982a070da0>: array([<tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>,
        <tomotree.Cell object at 0x729829dfdb50>,
        <tomotree.Cell object at 0x729829dfdb80>,
        <tomotree.Cell object at 0x729829dfdbb0>], dtype=object),
 <tomotree.Ray at 0x72982a070e00>: array([<tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>,
        <tomotree.Cell object at 0x729829dd8320>,
        <tomotree.Cell object at 0x729829dd8350>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd8e00>,
        <tomotree.Cell object at 0x729829dd8e30>,
        <tomotree.Cell object at 0x729829dd8e60>,
        <tomotree.Cell object at 0x729829dd8e90>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dd9940>,
        <tomotree.Cell object at 0x729829dd9970>,
        <tomotree.Cell object at 0x729829dd99a0>,
        <tomotree.Cell object at 0x729829dd99d0>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829dda4b0>,
        <tomotree.Cell object at 0x729829dda4e0>,
        <tomotree.Cell object at 0x729829dda510>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddaff0>,
        <tomotree.Cell object at 0x729829ddb020>,
        <tomotree.Cell object at 0x729829ddb050>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829ddbb30>,
        <tomotree.Cell object at 0x729829ddbb60>,
        <tomotree.Cell object at 0x729829ddbb90>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfc680>,
        <tomotree.Cell object at 0x729829dfc6b0>,
        <tomotree.Cell object at 0x729829dfc6e0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>,
        <tomotree.Cell object at 0x729829dfd190>,
        <tomotree.Cell object at 0x729829dfd1c0>,
        <tomotree.Cell object at 0x729829dfd1f0>], dtype=object),
 <tomotree.Ray at 0x72982a070e60>: array([<tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db95e0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dba120>,
        <tomotree.Cell object at 0x729829dba150>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbac60>,
        <tomotree.Cell object at 0x729829dbac90>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dbb7a0>,
        <tomotree.Cell object at 0x729829dbb7d0>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>,
        <tomotree.Cell object at 0x729829dd82f0>], dtype=object),
 <tomotree.Ray at 0x72982a070ec0>: array([<tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>], dtype=object),
 <tomotree.Ray at 0x72982a070f20>: array([<tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>], dtype=object),
 <tomotree.Ray at 0x72982a070f80>: array([<tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb98b0>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829eba450>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>], dtype=object),
 <tomotree.Ray at 0x72982a070fe0>: array([<tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a073b30>,
        <tomotree.Cell object at 0x72982a073b60>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08c740>,
        <tomotree.Cell object at 0x72982a08c770>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08d2e0>,
        <tomotree.Cell object at 0x72982a08d310>,
        <tomotree.Cell object at 0x72982a08d340>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08de50>,
        <tomotree.Cell object at 0x72982a08de80>,
        <tomotree.Cell object at 0x72982a08deb0>,
        <tomotree.Cell object at 0x72982a08dee0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08e9c0>,
        <tomotree.Cell object at 0x72982a08e9f0>,
        <tomotree.Cell object at 0x72982a08ea20>,
        <tomotree.Cell object at 0x72982a08ea50>,
        <tomotree.Cell object at 0x72982a08ea80>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08f560>,
        <tomotree.Cell object at 0x72982a08f590>,
        <tomotree.Cell object at 0x72982a08f5c0>,
        <tomotree.Cell object at 0x72982a08f5f0>,
        <tomotree.Cell object at 0x72982a08f620>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8110>,
        <tomotree.Cell object at 0x729829eb8140>,
        <tomotree.Cell object at 0x729829eb8170>,
        <tomotree.Cell object at 0x729829eb81a0>,
        <tomotree.Cell object at 0x729829eb81d0>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb8d10>,
        <tomotree.Cell object at 0x729829eb8d40>,
        <tomotree.Cell object at 0x729829eb8d70>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb98b0>,
        <tomotree.Cell object at 0x729829eb98e0>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829eba450>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>], dtype=object),
 <tomotree.Ray at 0x72982a071040>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08de50>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08e9c0>,
        <tomotree.Cell object at 0x72982a08e9f0>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08f560>,
        <tomotree.Cell object at 0x72982a08f590>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8110>,
        <tomotree.Cell object at 0x729829eb8140>,
        <tomotree.Cell object at 0x729829eb8170>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb8d10>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>], dtype=object),
 <tomotree.Ray at 0x72982a0710a0>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>], dtype=object),
 <tomotree.Ray at 0x72982a071100>: array([<tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>], dtype=object),
 <tomotree.Ray at 0x72982a071160>: array([<tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>], dtype=object),
 <tomotree.Ray at 0x72982a070c20>: array([<tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>], dtype=object),
 <tomotree.Ray at 0x72982a071220>: array([<tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>], dtype=object),
 <tomotree.Ray at 0x72982a071280>: array([<tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>], dtype=object),
 <tomotree.Ray at 0x72982a0712e0>: array([<tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>], dtype=object),
 <tomotree.Ray at 0x72982a071340>: array([<tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfcf80>,
        <tomotree.Cell object at 0x729829dfcfb0>,
        <tomotree.Cell object at 0x729829dfcfe0>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>,
        <tomotree.Cell object at 0x729829dfdaf0>,
        <tomotree.Cell object at 0x729829dfdb20>], dtype=object),
 <tomotree.Ray at 0x72982a0713a0>: array([<tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd8d40>,
        <tomotree.Cell object at 0x729829dd8d70>,
        <tomotree.Cell object at 0x729829dd8da0>,
        <tomotree.Cell object at 0x729829dd8dd0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dd98b0>,
        <tomotree.Cell object at 0x729829dd98e0>,
        <tomotree.Cell object at 0x729829dd9910>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829dda3f0>,
        <tomotree.Cell object at 0x729829dda420>,
        <tomotree.Cell object at 0x729829dda450>,
        <tomotree.Cell object at 0x729829dda480>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddaf60>,
        <tomotree.Cell object at 0x729829ddaf90>,
        <tomotree.Cell object at 0x729829ddafc0>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829ddbaa0>,
        <tomotree.Cell object at 0x729829ddbad0>,
        <tomotree.Cell object at 0x729829ddbb00>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfc620>,
        <tomotree.Cell object at 0x729829dfc650>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>,
        <tomotree.Cell object at 0x729829dfd160>], dtype=object),
 <tomotree.Ray at 0x72982a071400>: array([<tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f91c40>,
        <tomotree.Cell object at 0x729829f91c70>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f927b0>,
        <tomotree.Cell object at 0x729829f927e0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f932f0>,
        <tomotree.Cell object at 0x729829f93320>,
        <tomotree.Cell object at 0x729829f93350>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829f93e60>,
        <tomotree.Cell object at 0x729829f93e90>,
        <tomotree.Cell object at 0x729829f93ec0>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db8a10>,
        <tomotree.Cell object at 0x729829db8a40>,
        <tomotree.Cell object at 0x729829db8a70>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9550>,
        <tomotree.Cell object at 0x729829db9580>,
        <tomotree.Cell object at 0x729829db95b0>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dba0c0>,
        <tomotree.Cell object at 0x729829dba0f0>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbac00>,
        <tomotree.Cell object at 0x729829dbac30>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dbb740>,
        <tomotree.Cell object at 0x729829dbb770>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>,
        <tomotree.Cell object at 0x729829dd82c0>], dtype=object),
 <tomotree.Ray at 0x72982a071460>: array([<tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>], dtype=object),
 <tomotree.Ray at 0x72982a0714c0>: array([<tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb98b0>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829eba450>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>], dtype=object),
 <tomotree.Ray at 0x72982a071520>: array([<tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb98b0>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829eba450>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>], dtype=object),
 <tomotree.Ray at 0x72982a071580>: array([<tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a073b30>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08de50>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08e9c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>], dtype=object),
 <tomotree.Ray at 0x72982a0715e0>: array([<tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a073b30>,
        <tomotree.Cell object at 0x72982a073b60>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>], dtype=object),
 <tomotree.Ray at 0x72982a071640>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>], dtype=object),
 <tomotree.Ray at 0x72982a0716a0>: array([<tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>], dtype=object),
 <tomotree.Ray at 0x72982a071700>: array([<tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>], dtype=object),
 <tomotree.Ray at 0x72982a0711c0>: array([<tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>], dtype=object),
 <tomotree.Ray at 0x72982a0717c0>: array([<tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>], dtype=object),
 <tomotree.Ray at 0x72982a071820>: array([<tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>], dtype=object),
 <tomotree.Ray at 0x72982a071880>: array([<tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a0718e0>: array([<tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfc410>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>,
        <tomotree.Cell object at 0x729829dfdac0>], dtype=object),
 <tomotree.Ray at 0x72982a071940>: array([<tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8140>,
        <tomotree.Cell object at 0x729829dd8170>,
        <tomotree.Cell object at 0x729829dd81a0>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd8cb0>,
        <tomotree.Cell object at 0x729829dd8ce0>,
        <tomotree.Cell object at 0x729829dd8d10>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dd9820>,
        <tomotree.Cell object at 0x729829dd9850>,
        <tomotree.Cell object at 0x729829dd9880>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829dda390>,
        <tomotree.Cell object at 0x729829dda3c0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddaf00>,
        <tomotree.Cell object at 0x729829ddaf30>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829ddba40>,
        <tomotree.Cell object at 0x729829ddba70>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfc5f0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>], dtype=object),
 <tomotree.Ray at 0x72982a0719a0>: array([<tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f926f0>,
        <tomotree.Cell object at 0x729829f92720>,
        <tomotree.Cell object at 0x729829f92750>,
        <tomotree.Cell object at 0x729829f92780>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93260>,
        <tomotree.Cell object at 0x729829f93290>,
        <tomotree.Cell object at 0x729829f932c0>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829f93dd0>,
        <tomotree.Cell object at 0x729829f93e00>,
        <tomotree.Cell object at 0x729829f93e30>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db8980>,
        <tomotree.Cell object at 0x729829db89b0>,
        <tomotree.Cell object at 0x729829db89e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db94f0>,
        <tomotree.Cell object at 0x729829db9520>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dba060>,
        <tomotree.Cell object at 0x729829dba090>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbabd0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dbb710>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>,
        <tomotree.Cell object at 0x729829dd8290>], dtype=object),
 <tomotree.Ray at 0x72982a071a00>: array([<tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8110>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91100>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a071a60>: array([<tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08d2e0>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08de50>,
        <tomotree.Cell object at 0x72982a08de80>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08e9c0>,
        <tomotree.Cell object at 0x72982a08e9f0>,
        <tomotree.Cell object at 0x72982a08ea20>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08f560>,
        <tomotree.Cell object at 0x72982a08f590>,
        <tomotree.Cell object at 0x72982a08f5c0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8110>,
        <tomotree.Cell object at 0x729829eb8140>,
        <tomotree.Cell object at 0x729829eb8170>,
        <tomotree.Cell object at 0x729829eb81a0>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb8d10>,
        <tomotree.Cell object at 0x729829eb8d40>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb98b0>,
        <tomotree.Cell object at 0x729829eb98e0>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829eba450>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>], dtype=object),
 <tomotree.Ray at 0x72982a071ac0>: array([<tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a073b30>,
        <tomotree.Cell object at 0x72982a073b60>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08c740>,
        <tomotree.Cell object at 0x72982a08c770>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08d2e0>,
        <tomotree.Cell object at 0x72982a08d310>,
        <tomotree.Cell object at 0x72982a08d340>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08de50>,
        <tomotree.Cell object at 0x72982a08de80>,
        <tomotree.Cell object at 0x72982a08deb0>,
        <tomotree.Cell object at 0x72982a08dee0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08e9c0>,
        <tomotree.Cell object at 0x72982a08e9f0>,
        <tomotree.Cell object at 0x72982a08ea20>,
        <tomotree.Cell object at 0x72982a08ea50>,
        <tomotree.Cell object at 0x72982a08ea80>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08f560>,
        <tomotree.Cell object at 0x72982a08f590>,
        <tomotree.Cell object at 0x72982a08f5c0>,
        <tomotree.Cell object at 0x72982a08f5f0>,
        <tomotree.Cell object at 0x72982a08f620>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8110>,
        <tomotree.Cell object at 0x729829eb8140>,
        <tomotree.Cell object at 0x729829eb8170>,
        <tomotree.Cell object at 0x729829eb81a0>,
        <tomotree.Cell object at 0x729829eb81d0>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb8d10>,
        <tomotree.Cell object at 0x729829eb8d40>,
        <tomotree.Cell object at 0x729829eb8d70>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb98b0>,
        <tomotree.Cell object at 0x729829eb98e0>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829eba450>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebafc0>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>], dtype=object),
 <tomotree.Ray at 0x72982a071b20>: array([<tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a073b30>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08de50>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08e9c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>], dtype=object),
 <tomotree.Ray at 0x72982a071b80>: array([<tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>], dtype=object),
 <tomotree.Ray at 0x72982a071be0>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>], dtype=object),
 <tomotree.Ray at 0x72982a071c40>: array([<tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>], dtype=object),
 <tomotree.Ray at 0x72982a071ca0>: array([<tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f770>,
        <tomotree.Cell object at 0x72982a08f7a0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>], dtype=object),
 <tomotree.Ray at 0x72982a071760>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>], dtype=object),
 <tomotree.Ray at 0x72982a071d60>: array([<tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>], dtype=object),
 <tomotree.Ray at 0x72982a071dc0>: array([<tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>], dtype=object),
 <tomotree.Ray at 0x72982a071e20>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a071e80>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a071ee0>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dba990>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbb500>,
        <tomotree.Cell object at 0x729829dbb530>,
        <tomotree.Cell object at 0x729829dbb560>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd80e0>,
        <tomotree.Cell object at 0x729829dd8110>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd8c50>,
        <tomotree.Cell object at 0x729829dd8c80>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dd97f0>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829dda360>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddaed0>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfd100>,
        <tomotree.Cell object at 0x729829dfd130>], dtype=object),
 <tomotree.Ray at 0x72982a071f40>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f90f20>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f91ac0>,
        <tomotree.Cell object at 0x729829f91af0>,
        <tomotree.Cell object at 0x729829f91b20>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f92630>,
        <tomotree.Cell object at 0x729829f92660>,
        <tomotree.Cell object at 0x729829f92690>,
        <tomotree.Cell object at 0x729829f926c0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f931d0>,
        <tomotree.Cell object at 0x729829f93200>,
        <tomotree.Cell object at 0x729829f93230>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829f93d40>,
        <tomotree.Cell object at 0x729829f93d70>,
        <tomotree.Cell object at 0x729829f93da0>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db88f0>,
        <tomotree.Cell object at 0x729829db8920>,
        <tomotree.Cell object at 0x729829db8950>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9490>,
        <tomotree.Cell object at 0x729829db94c0>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dba000>,
        <tomotree.Cell object at 0x729829dba030>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbab70>,
        <tomotree.Cell object at 0x729829dbaba0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dbb6e0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>], dtype=object),
 <tomotree.Ray at 0x72982a071fa0>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>,
        <tomotree.Cell object at 0x729829f492b0>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f49d90>,
        <tomotree.Cell object at 0x729829f49dc0>,
        <tomotree.Cell object at 0x729829f49df0>,
        <tomotree.Cell object at 0x729829f49e20>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4a900>,
        <tomotree.Cell object at 0x729829f4a930>,
        <tomotree.Cell object at 0x729829f4a960>,
        <tomotree.Cell object at 0x729829f4a990>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4b4a0>,
        <tomotree.Cell object at 0x729829f4b4d0>,
        <tomotree.Cell object at 0x729829f4b500>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f68050>,
        <tomotree.Cell object at 0x729829f68080>,
        <tomotree.Cell object at 0x729829f680b0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f68bf0>,
        <tomotree.Cell object at 0x729829f68c20>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f69760>,
        <tomotree.Cell object at 0x729829f69790>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6a2d0>,
        <tomotree.Cell object at 0x729829f6a300>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6ae70>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f6b9e0>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90590>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a072000>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc8f0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd460>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efdfd0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>], dtype=object),
 <tomotree.Ray at 0x72982a072060>: array([<tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08de50>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08e9c0>,
        <tomotree.Cell object at 0x72982a08e9f0>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f530>,
        <tomotree.Cell object at 0x72982a08f560>,
        <tomotree.Cell object at 0x72982a08f590>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb80e0>,
        <tomotree.Cell object at 0x729829eb8110>,
        <tomotree.Cell object at 0x729829eb8140>,
        <tomotree.Cell object at 0x729829eb8170>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb8c80>,
        <tomotree.Cell object at 0x729829eb8cb0>,
        <tomotree.Cell object at 0x729829eb8ce0>,
        <tomotree.Cell object at 0x729829eb8d10>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9820>,
        <tomotree.Cell object at 0x729829eb9850>,
        <tomotree.Cell object at 0x729829eb9880>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba3c0>,
        <tomotree.Cell object at 0x729829eba3f0>,
        <tomotree.Cell object at 0x729829eba420>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebaf60>,
        <tomotree.Cell object at 0x729829ebaf90>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbb00>,
        <tomotree.Cell object at 0x729829ebbb30>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edc6b0>,
        <tomotree.Cell object at 0x729829edc6e0>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd250>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x72982a028650>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829ede660>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf1d0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829edfd40>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>], dtype=object),
 <tomotree.Ray at 0x72982a0720c0>: array([<tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a073b30>,
        <tomotree.Cell object at 0x72982a073b60>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08c710>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d2b0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08de20>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>], dtype=object),
 <tomotree.Ray at 0x72982a072120>: array([<tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>], dtype=object),
 <tomotree.Ray at 0x72982a072180>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>], dtype=object),
 <tomotree.Ray at 0x72982a0721e0>: array([<tomotree.Cell object at 0x729829fc9c70>,
        <tomotree.Cell object at 0x729829fc8920>,
        <tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a073ec0>,
        <tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>], dtype=object),
 <tomotree.Ray at 0x72982a072240>: array([<tomotree.Cell object at 0x72982a0733b0>,
        <tomotree.Cell object at 0x72982a0733e0>,
        <tomotree.Cell object at 0x729829fc9c70>,
        <tomotree.Cell object at 0x729829fc8920>,
        <tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a073e60>,
        <tomotree.Cell object at 0x72982a073e90>,
        <tomotree.Cell object at 0x72982a073ec0>,
        <tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c9e0>,
        <tomotree.Cell object at 0x72982a08ca10>,
        <tomotree.Cell object at 0x72982a08ca40>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08d520>,
        <tomotree.Cell object at 0x72982a08d550>,
        <tomotree.Cell object at 0x72982a08d580>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08e060>,
        <tomotree.Cell object at 0x72982a08e090>,
        <tomotree.Cell object at 0x72982a08e0c0>,
        <tomotree.Cell object at 0x72982a08e0f0>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08eba0>,
        <tomotree.Cell object at 0x72982a08ebd0>,
        <tomotree.Cell object at 0x72982a08ec00>,
        <tomotree.Cell object at 0x72982a08ec30>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f6e0>,
        <tomotree.Cell object at 0x72982a08f710>,
        <tomotree.Cell object at 0x72982a08f740>,
        <tomotree.Cell object at 0x72982a08f770>,
        <tomotree.Cell object at 0x72982a08f7a0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x729829eb8260>,
        <tomotree.Cell object at 0x729829eb8290>,
        <tomotree.Cell object at 0x729829eb82c0>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8dd0>,
        <tomotree.Cell object at 0x729829eb8e00>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb9940>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>], dtype=object),
 <tomotree.Ray at 0x72982a071d00>: array([<tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08ca40>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08d550>,
        <tomotree.Cell object at 0x72982a08d580>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08e090>,
        <tomotree.Cell object at 0x72982a08e0c0>,
        <tomotree.Cell object at 0x72982a08e0f0>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08ebd0>,
        <tomotree.Cell object at 0x72982a08ec00>,
        <tomotree.Cell object at 0x72982a08ec30>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08f710>,
        <tomotree.Cell object at 0x72982a08f740>,
        <tomotree.Cell object at 0x72982a08f770>,
        <tomotree.Cell object at 0x72982a08f7a0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x729829eb8290>,
        <tomotree.Cell object at 0x729829eb82c0>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8e00>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb9940>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>], dtype=object),
 <tomotree.Ray at 0x72982a072300>: array([<tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>], dtype=object),
 <tomotree.Ray at 0x72982a072360>: array([<tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>], dtype=object),
 <tomotree.Ray at 0x72982a0723c0>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a072420>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a072480>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfd100>], dtype=object),
 <tomotree.Ray at 0x72982a0724e0>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f902f0>,
        <tomotree.Cell object at 0x729829f90320>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f90e90>,
        <tomotree.Cell object at 0x729829f90ec0>,
        <tomotree.Cell object at 0x729829f90ef0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f91a30>,
        <tomotree.Cell object at 0x729829f91a60>,
        <tomotree.Cell object at 0x729829f91a90>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f925d0>,
        <tomotree.Cell object at 0x729829f92600>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93140>,
        <tomotree.Cell object at 0x729829f93170>,
        <tomotree.Cell object at 0x729829f931a0>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829f93ce0>,
        <tomotree.Cell object at 0x729829f93d10>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db88c0>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9460>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829db9fd0>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>], dtype=object),
 <tomotree.Ray at 0x72982a072540>: array([<tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f490a0>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f49c40>,
        <tomotree.Cell object at 0x729829f49c70>,
        <tomotree.Cell object at 0x729829f49ca0>,
        <tomotree.Cell object at 0x729829f49cd0>,
        <tomotree.Cell object at 0x729829f49d00>,
        <tomotree.Cell object at 0x729829f49d30>,
        <tomotree.Cell object at 0x729829f49d60>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4a7e0>,
        <tomotree.Cell object at 0x729829f4a810>,
        <tomotree.Cell object at 0x729829f4a840>,
        <tomotree.Cell object at 0x729829f4a870>,
        <tomotree.Cell object at 0x729829f4a8a0>,
        <tomotree.Cell object at 0x729829f4a8d0>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4b380>,
        <tomotree.Cell object at 0x729829f4b3b0>,
        <tomotree.Cell object at 0x729829f4b3e0>,
        <tomotree.Cell object at 0x729829f4b410>,
        <tomotree.Cell object at 0x729829f4b440>,
        <tomotree.Cell object at 0x729829f4b470>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f4bf20>,
        <tomotree.Cell object at 0x729829f4bf50>,
        <tomotree.Cell object at 0x729829f4bf80>,
        <tomotree.Cell object at 0x729829f4bfb0>,
        <tomotree.Cell object at 0x729829f4bfe0>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f68b30>,
        <tomotree.Cell object at 0x729829f68b60>,
        <tomotree.Cell object at 0x729829f68b90>,
        <tomotree.Cell object at 0x729829f68bc0>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f696d0>,
        <tomotree.Cell object at 0x729829f69700>,
        <tomotree.Cell object at 0x729829f69730>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6a270>,
        <tomotree.Cell object at 0x729829f6a2a0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6ae10>,
        <tomotree.Cell object at 0x729829f6ae40>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f6b980>,
        <tomotree.Cell object at 0x729829f6b9b0>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90560>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f910d0>,
        <tomotree.Cell object at 0x729829f91b50>,
        <tomotree.Cell object at 0x729829f91b80>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a0725a0>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efdfa0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efeae0>,
        <tomotree.Cell object at 0x729829efeb10>,
        <tomotree.Cell object at 0x729829efeb40>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829eff650>,
        <tomotree.Cell object at 0x729829eff680>,
        <tomotree.Cell object at 0x729829eff6b0>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24230>,
        <tomotree.Cell object at 0x729829f24260>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f24dd0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>], dtype=object),
 <tomotree.Ray at 0x72982a072600>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8c50>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb97c0>,
        <tomotree.Cell object at 0x729829eb97f0>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba330>,
        <tomotree.Cell object at 0x729829eba360>,
        <tomotree.Cell object at 0x729829eba390>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebaea0>,
        <tomotree.Cell object at 0x729829ebaed0>,
        <tomotree.Cell object at 0x729829ebaf00>,
        <tomotree.Cell object at 0x729829ebaf30>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebba40>,
        <tomotree.Cell object at 0x729829ebba70>,
        <tomotree.Cell object at 0x729829ebbaa0>,
        <tomotree.Cell object at 0x729829ebbad0>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc620>,
        <tomotree.Cell object at 0x729829edc650>,
        <tomotree.Cell object at 0x729829edc680>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd1f0>,
        <tomotree.Cell object at 0x729829edd220>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x729829eddd60>,
        <tomotree.Cell object at 0x729829eddd90>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede630>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>], dtype=object),
 <tomotree.Ray at 0x72982a072660>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073a70>,
        <tomotree.Cell object at 0x72982a073aa0>,
        <tomotree.Cell object at 0x72982a073ad0>,
        <tomotree.Cell object at 0x72982a073b00>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08c680>,
        <tomotree.Cell object at 0x72982a08c6b0>,
        <tomotree.Cell object at 0x72982a08c6e0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d250>,
        <tomotree.Cell object at 0x72982a08d280>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08ddf0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08e990>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f500>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>], dtype=object),
 <tomotree.Ray at 0x72982a0726c0>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>], dtype=object),
 <tomotree.Ray at 0x72982a072720>: array([<tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>], dtype=object),
 <tomotree.Ray at 0x72982a072780>: array([<tomotree.Cell object at 0x729829fc8920>,
        <tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073ec0>,
        <tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08ca40>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>], dtype=object),
 <tomotree.Ray at 0x72982a0727e0>: array([<tomotree.Cell object at 0x72982aa2d8b0>,
        <tomotree.Cell object at 0x72982a0733b0>,
        <tomotree.Cell object at 0x72982a0733e0>,
        <tomotree.Cell object at 0x729829fc9c70>,
        <tomotree.Cell object at 0x729829fc8920>,
        <tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a073e00>,
        <tomotree.Cell object at 0x72982a073e30>,
        <tomotree.Cell object at 0x72982a073e60>,
        <tomotree.Cell object at 0x72982a073e90>,
        <tomotree.Cell object at 0x72982a073ec0>,
        <tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c980>,
        <tomotree.Cell object at 0x72982a08c9b0>,
        <tomotree.Cell object at 0x72982a08c9e0>,
        <tomotree.Cell object at 0x72982a08ca10>,
        <tomotree.Cell object at 0x72982a08ca40>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08d490>,
        <tomotree.Cell object at 0x72982a08d4c0>,
        <tomotree.Cell object at 0x72982a08d4f0>,
        <tomotree.Cell object at 0x72982a08d520>,
        <tomotree.Cell object at 0x72982a08d550>,
        <tomotree.Cell object at 0x72982a08d580>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08dfd0>,
        <tomotree.Cell object at 0x72982a08e000>,
        <tomotree.Cell object at 0x72982a08e030>,
        <tomotree.Cell object at 0x72982a08e060>,
        <tomotree.Cell object at 0x72982a08e090>,
        <tomotree.Cell object at 0x72982a08e0c0>,
        <tomotree.Cell object at 0x72982a08e0f0>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08eb40>,
        <tomotree.Cell object at 0x72982a08eb70>,
        <tomotree.Cell object at 0x72982a08eba0>,
        <tomotree.Cell object at 0x72982a08ebd0>,
        <tomotree.Cell object at 0x72982a08ec00>,
        <tomotree.Cell object at 0x72982a08ec30>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08f6b0>,
        <tomotree.Cell object at 0x72982a08f6e0>,
        <tomotree.Cell object at 0x72982a08f710>,
        <tomotree.Cell object at 0x72982a08f740>,
        <tomotree.Cell object at 0x72982a08f770>,
        <tomotree.Cell object at 0x72982a08f7a0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x729829eb8260>,
        <tomotree.Cell object at 0x729829eb8290>,
        <tomotree.Cell object at 0x729829eb82c0>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8dd0>,
        <tomotree.Cell object at 0x729829eb8e00>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9940>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>], dtype=object),
 <tomotree.Ray at 0x72982a0722a0>: array([<tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>], dtype=object),
 <tomotree.Ray at 0x72982a0728a0>: array([<tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>], dtype=object),
 <tomotree.Ray at 0x72982a072900>: array([<tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>], dtype=object),
 <tomotree.Ray at 0x72982a072960>: array([<tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a0729c0>: array([<tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a035a00>: array([<tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfd100>], dtype=object),
 <tomotree.Ray at 0x72982a1dbec0>: array([<tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6aab0>,
        <tomotree.Cell object at 0x729829f6aae0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6b680>,
        <tomotree.Cell object at 0x729829f6b6b0>,
        <tomotree.Cell object at 0x729829f6b6e0>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90260>,
        <tomotree.Cell object at 0x729829f90290>,
        <tomotree.Cell object at 0x729829f902c0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f90e00>,
        <tomotree.Cell object at 0x729829f90e30>,
        <tomotree.Cell object at 0x729829f90e60>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f919d0>,
        <tomotree.Cell object at 0x729829f91a00>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92570>,
        <tomotree.Cell object at 0x729829f925a0>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93110>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829f93cb0>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db8890>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9430>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>], dtype=object),
 <tomotree.Ray at 0x72982a1d8bc0>: array([<tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27710>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48320>,
        <tomotree.Cell object at 0x729829f48350>,
        <tomotree.Cell object at 0x729829f48380>,
        <tomotree.Cell object at 0x729829f483b0>,
        <tomotree.Cell object at 0x729829f483e0>,
        <tomotree.Cell object at 0x729829f48410>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f48ef0>,
        <tomotree.Cell object at 0x729829f48f20>,
        <tomotree.Cell object at 0x729829f48f50>,
        <tomotree.Cell object at 0x729829f48f80>,
        <tomotree.Cell object at 0x729829f48fb0>,
        <tomotree.Cell object at 0x729829f48fe0>,
        <tomotree.Cell object at 0x729829f49010>,
        <tomotree.Cell object at 0x729829f49040>,
        <tomotree.Cell object at 0x729829f49070>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f49ac0>,
        <tomotree.Cell object at 0x729829f49af0>,
        <tomotree.Cell object at 0x729829f49b20>,
        <tomotree.Cell object at 0x729829f49b50>,
        <tomotree.Cell object at 0x729829f49b80>,
        <tomotree.Cell object at 0x729829f49bb0>,
        <tomotree.Cell object at 0x729829f49be0>,
        <tomotree.Cell object at 0x729829f49c10>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4a6c0>,
        <tomotree.Cell object at 0x729829f4a6f0>,
        <tomotree.Cell object at 0x729829f4a720>,
        <tomotree.Cell object at 0x729829f4a750>,
        <tomotree.Cell object at 0x729829f4a780>,
        <tomotree.Cell object at 0x729829f4a7b0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4b290>,
        <tomotree.Cell object at 0x729829f4b2c0>,
        <tomotree.Cell object at 0x729829f4b2f0>,
        <tomotree.Cell object at 0x729829f4b320>,
        <tomotree.Cell object at 0x729829f4b350>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f4be60>,
        <tomotree.Cell object at 0x729829f4be90>,
        <tomotree.Cell object at 0x729829f4bec0>,
        <tomotree.Cell object at 0x729829f4bef0>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f68a70>,
        <tomotree.Cell object at 0x729829f68aa0>,
        <tomotree.Cell object at 0x729829f68ad0>,
        <tomotree.Cell object at 0x729829f68b00>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69610>,
        <tomotree.Cell object at 0x729829f69640>,
        <tomotree.Cell object at 0x729829f69670>,
        <tomotree.Cell object at 0x729829f696a0>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6a1e0>,
        <tomotree.Cell object at 0x729829f6a210>,
        <tomotree.Cell object at 0x729829f6a240>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6adb0>,
        <tomotree.Cell object at 0x729829f6ade0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f6b950>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x729830652c60>: array([<tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff5f0>,
        <tomotree.Cell object at 0x729829eff620>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>,
        <tomotree.Cell object at 0x729829f24110>,
        <tomotree.Cell object at 0x729829f24140>,
        <tomotree.Cell object at 0x729829f24170>,
        <tomotree.Cell object at 0x729829f241a0>,
        <tomotree.Cell object at 0x729829f241d0>,
        <tomotree.Cell object at 0x729829f24200>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f24cb0>,
        <tomotree.Cell object at 0x729829f24ce0>,
        <tomotree.Cell object at 0x729829f24d10>,
        <tomotree.Cell object at 0x729829f24d40>,
        <tomotree.Cell object at 0x729829f24d70>,
        <tomotree.Cell object at 0x729829f24da0>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f258b0>,
        <tomotree.Cell object at 0x729829f258e0>,
        <tomotree.Cell object at 0x729829f25910>,
        <tomotree.Cell object at 0x729829f25940>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26480>,
        <tomotree.Cell object at 0x729829f264b0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>,
        <tomotree.Cell object at 0x729829f490d0>,
        <tomotree.Cell object at 0x729829f49100>,
        <tomotree.Cell object at 0x729829f49130>,
        <tomotree.Cell object at 0x729829f49160>,
        <tomotree.Cell object at 0x729829f49190>,
        <tomotree.Cell object at 0x729829f491c0>,
        <tomotree.Cell object at 0x729829f491f0>,
        <tomotree.Cell object at 0x729829f49220>,
        <tomotree.Cell object at 0x729829f49250>,
        <tomotree.Cell object at 0x729829f49280>], dtype=object),
 <tomotree.Ray at 0x72982a072a20>: array([<tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebb9e0>,
        <tomotree.Cell object at 0x729829ebba10>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc590>,
        <tomotree.Cell object at 0x729829edc5c0>,
        <tomotree.Cell object at 0x729829edc5f0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd0d0>,
        <tomotree.Cell object at 0x729829edd100>,
        <tomotree.Cell object at 0x729829edd130>,
        <tomotree.Cell object at 0x729829edd160>,
        <tomotree.Cell object at 0x729829edd190>,
        <tomotree.Cell object at 0x729829edd1c0>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x729829eddcd0>,
        <tomotree.Cell object at 0x729829eddd00>,
        <tomotree.Cell object at 0x729829eddd30>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede5d0>,
        <tomotree.Cell object at 0x729829ede600>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf1a0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfd10>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f240e0>], dtype=object),
 <tomotree.Ray at 0x72982a072ab0>: array([<tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a0739b0>,
        <tomotree.Cell object at 0x72982a0739e0>,
        <tomotree.Cell object at 0x72982a073a10>,
        <tomotree.Cell object at 0x72982a073a40>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08c590>,
        <tomotree.Cell object at 0x72982a08c5c0>,
        <tomotree.Cell object at 0x72982a08c5f0>,
        <tomotree.Cell object at 0x72982a08c620>,
        <tomotree.Cell object at 0x72982a08c650>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d100>,
        <tomotree.Cell object at 0x72982a08d130>,
        <tomotree.Cell object at 0x72982a08d160>,
        <tomotree.Cell object at 0x72982a08d190>,
        <tomotree.Cell object at 0x72982a08d1c0>,
        <tomotree.Cell object at 0x72982a08d1f0>,
        <tomotree.Cell object at 0x72982a08d220>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08dd30>,
        <tomotree.Cell object at 0x72982a08dd60>,
        <tomotree.Cell object at 0x72982a08dd90>,
        <tomotree.Cell object at 0x72982a08ddc0>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08e930>,
        <tomotree.Cell object at 0x72982a08e960>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f4d0>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb80b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>], dtype=object),
 <tomotree.Ray at 0x72982a072b10>: array([<tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>], dtype=object),
 <tomotree.Ray at 0x72982a072b70>: array([<tomotree.Cell object at 0x729829fc9c70>,
        <tomotree.Cell object at 0x729829fc8920>,
        <tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a073ec0>,
        <tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>], dtype=object),
 <tomotree.Ray at 0x72982a072bd0>: array([<tomotree.Cell object at 0x729829fc8920>,
        <tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073ec0>,
        <tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08ca40>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>], dtype=object),
 <tomotree.Ray at 0x72982a072c30>: array([<tomotree.Cell object at 0x729829eb82c0>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb8dd0>,
        <tomotree.Cell object at 0x729829eb8e00>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb9940>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>], dtype=object),
 <tomotree.Ray at 0x72982a072840>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>], dtype=object),
 <tomotree.Ray at 0x72982a072cf0>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>], dtype=object),
 <tomotree.Ray at 0x72982a072d50>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f91160>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f91cd0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92840>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f933b0>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>], dtype=object),
 <tomotree.Ray at 0x72982a072db0>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f68110>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68c80>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f697f0>,
        <tomotree.Cell object at 0x729829f69820>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f6a360>,
        <tomotree.Cell object at 0x729829f6a390>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6aed0>,
        <tomotree.Cell object at 0x729829f6af00>,
        <tomotree.Cell object at 0x729829f6af30>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6ba40>,
        <tomotree.Cell object at 0x729829f6ba70>,
        <tomotree.Cell object at 0x729829f6baa0>,
        <tomotree.Cell object at 0x729829f6bad0>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f905f0>,
        <tomotree.Cell object at 0x729829f90620>,
        <tomotree.Cell object at 0x729829f90650>,
        <tomotree.Cell object at 0x729829f90680>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f91160>,
        <tomotree.Cell object at 0x729829f91190>,
        <tomotree.Cell object at 0x729829f911c0>,
        <tomotree.Cell object at 0x729829f911f0>,
        <tomotree.Cell object at 0x729829f91220>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f91cd0>,
        <tomotree.Cell object at 0x729829f91d00>,
        <tomotree.Cell object at 0x729829f91d30>,
        <tomotree.Cell object at 0x729829f91d60>,
        <tomotree.Cell object at 0x729829f91d90>,
        <tomotree.Cell object at 0x729829f91dc0>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92840>,
        <tomotree.Cell object at 0x729829f92870>,
        <tomotree.Cell object at 0x729829f928a0>,
        <tomotree.Cell object at 0x729829f928d0>,
        <tomotree.Cell object at 0x729829f92900>,
        <tomotree.Cell object at 0x729829f92930>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f933b0>,
        <tomotree.Cell object at 0x729829f933e0>,
        <tomotree.Cell object at 0x729829f93410>,
        <tomotree.Cell object at 0x729829f93440>,
        <tomotree.Cell object at 0x729829f93470>,
        <tomotree.Cell object at 0x729829f934a0>,
        <tomotree.Cell object at 0x729829f934d0>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93f50>,
        <tomotree.Cell object at 0x729829f93f80>,
        <tomotree.Cell object at 0x729829f93fb0>,
        <tomotree.Cell object at 0x729829f93fe0>,
        <tomotree.Cell object at 0x729829db8050>,
        <tomotree.Cell object at 0x729829db8080>,
        <tomotree.Cell object at 0x729829db80b0>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8b30>,
        <tomotree.Cell object at 0x729829db8b60>,
        <tomotree.Cell object at 0x729829db8b90>,
        <tomotree.Cell object at 0x729829db8bc0>,
        <tomotree.Cell object at 0x729829db8bf0>,
        <tomotree.Cell object at 0x729829db8c20>,
        <tomotree.Cell object at 0x729829db8c50>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db96a0>,
        <tomotree.Cell object at 0x729829db96d0>,
        <tomotree.Cell object at 0x729829db9700>,
        <tomotree.Cell object at 0x729829db9730>,
        <tomotree.Cell object at 0x729829db9760>,
        <tomotree.Cell object at 0x729829db9790>,
        <tomotree.Cell object at 0x729829db97c0>,
        <tomotree.Cell object at 0x729829db97f0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829dba240>,
        <tomotree.Cell object at 0x729829dba270>,
        <tomotree.Cell object at 0x729829dba2a0>,
        <tomotree.Cell object at 0x729829dba2d0>,
        <tomotree.Cell object at 0x729829dba300>,
        <tomotree.Cell object at 0x729829dba330>,
        <tomotree.Cell object at 0x729829dba360>,
        <tomotree.Cell object at 0x729829dba390>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dbade0>,
        <tomotree.Cell object at 0x729829dbae10>,
        <tomotree.Cell object at 0x729829dbae40>,
        <tomotree.Cell object at 0x729829dbae70>,
        <tomotree.Cell object at 0x729829dbaea0>,
        <tomotree.Cell object at 0x729829dbaed0>,
        <tomotree.Cell object at 0x729829dbaf00>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb980>,
        <tomotree.Cell object at 0x729829dbb9b0>,
        <tomotree.Cell object at 0x729829dbb9e0>,
        <tomotree.Cell object at 0x729829dbba10>,
        <tomotree.Cell object at 0x729829dbba40>,
        <tomotree.Cell object at 0x729829dbba70>,
        <tomotree.Cell object at 0x729829dbbaa0>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dd8560>,
        <tomotree.Cell object at 0x729829dd8590>,
        <tomotree.Cell object at 0x729829dd85c0>,
        <tomotree.Cell object at 0x729829dd85f0>,
        <tomotree.Cell object at 0x729829dd8620>,
        <tomotree.Cell object at 0x729829dd8650>,
        <tomotree.Cell object at 0x729829dd8680>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd9100>,
        <tomotree.Cell object at 0x729829dd9130>,
        <tomotree.Cell object at 0x729829dd9160>,
        <tomotree.Cell object at 0x729829dd9190>,
        <tomotree.Cell object at 0x729829dd91c0>,
        <tomotree.Cell object at 0x729829dd91f0>,
        <tomotree.Cell object at 0x729829dd9220>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9ca0>,
        <tomotree.Cell object at 0x729829dd9cd0>,
        <tomotree.Cell object at 0x729829dd9d00>,
        <tomotree.Cell object at 0x729829dd9d30>,
        <tomotree.Cell object at 0x729829dd9d60>,
        <tomotree.Cell object at 0x729829dd9d90>,
        <tomotree.Cell object at 0x729829dd9dc0>,
        <tomotree.Cell object at 0x729829dd9df0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dda840>,
        <tomotree.Cell object at 0x729829dda870>,
        <tomotree.Cell object at 0x729829dda8a0>,
        <tomotree.Cell object at 0x729829dda8d0>,
        <tomotree.Cell object at 0x729829dda900>,
        <tomotree.Cell object at 0x729829dda930>,
        <tomotree.Cell object at 0x729829dda960>,
        <tomotree.Cell object at 0x729829dda990>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddb410>,
        <tomotree.Cell object at 0x729829ddb440>,
        <tomotree.Cell object at 0x729829ddb470>,
        <tomotree.Cell object at 0x729829ddb4a0>,
        <tomotree.Cell object at 0x729829ddb4d0>,
        <tomotree.Cell object at 0x729829ddb500>,
        <tomotree.Cell object at 0x729829ddb530>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddbfe0>,
        <tomotree.Cell object at 0x729829dfc050>,
        <tomotree.Cell object at 0x729829dfc080>,
        <tomotree.Cell object at 0x729829dfc0b0>,
        <tomotree.Cell object at 0x729829dfc0e0>,
        <tomotree.Cell object at 0x729829dfc110>,
        <tomotree.Cell object at 0x729829dfc140>], dtype=object),
 <tomotree.Ray at 0x72982a072e10>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f24e30>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f259a0>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f26510>,
        <tomotree.Cell object at 0x729829f26540>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f27080>,
        <tomotree.Cell object at 0x729829f270b0>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27bf0>,
        <tomotree.Cell object at 0x729829f27c20>,
        <tomotree.Cell object at 0x729829f27c50>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f487a0>,
        <tomotree.Cell object at 0x729829f487d0>,
        <tomotree.Cell object at 0x729829f48800>,
        <tomotree.Cell object at 0x729829f48830>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f49310>,
        <tomotree.Cell object at 0x729829f49340>,
        <tomotree.Cell object at 0x729829f49370>,
        <tomotree.Cell object at 0x729829f493a0>,
        <tomotree.Cell object at 0x729829f493d0>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49e80>,
        <tomotree.Cell object at 0x729829f49eb0>,
        <tomotree.Cell object at 0x729829f49ee0>,
        <tomotree.Cell object at 0x729829f49f10>,
        <tomotree.Cell object at 0x729829f49f40>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a9f0>,
        <tomotree.Cell object at 0x729829f4aa20>,
        <tomotree.Cell object at 0x729829f4aa50>,
        <tomotree.Cell object at 0x729829f4aa80>,
        <tomotree.Cell object at 0x729829f4aab0>,
        <tomotree.Cell object at 0x729829f4aae0>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4b560>,
        <tomotree.Cell object at 0x729829f4b590>,
        <tomotree.Cell object at 0x729829f4b5c0>,
        <tomotree.Cell object at 0x729829f4b5f0>,
        <tomotree.Cell object at 0x729829f4b620>,
        <tomotree.Cell object at 0x729829f4b650>,
        <tomotree.Cell object at 0x729829f4b680>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f68140>,
        <tomotree.Cell object at 0x729829f68170>,
        <tomotree.Cell object at 0x729829f681a0>,
        <tomotree.Cell object at 0x729829f681d0>,
        <tomotree.Cell object at 0x729829f68200>,
        <tomotree.Cell object at 0x729829f68230>,
        <tomotree.Cell object at 0x729829f68260>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68cb0>,
        <tomotree.Cell object at 0x729829f68ce0>,
        <tomotree.Cell object at 0x729829f68d10>,
        <tomotree.Cell object at 0x729829f68d40>,
        <tomotree.Cell object at 0x729829f68d70>,
        <tomotree.Cell object at 0x729829f68da0>,
        <tomotree.Cell object at 0x729829f68dd0>,
        <tomotree.Cell object at 0x729829f68e00>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69850>,
        <tomotree.Cell object at 0x729829f69880>,
        <tomotree.Cell object at 0x729829f698b0>,
        <tomotree.Cell object at 0x729829f698e0>,
        <tomotree.Cell object at 0x729829f69910>,
        <tomotree.Cell object at 0x729829f69940>,
        <tomotree.Cell object at 0x729829f69970>,
        <tomotree.Cell object at 0x729829f699a0>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f6a3c0>,
        <tomotree.Cell object at 0x729829f6a3f0>,
        <tomotree.Cell object at 0x729829f6a420>,
        <tomotree.Cell object at 0x729829f6a450>,
        <tomotree.Cell object at 0x729829f6a480>,
        <tomotree.Cell object at 0x729829f6a4b0>,
        <tomotree.Cell object at 0x729829f6a4e0>,
        <tomotree.Cell object at 0x729829f6a510>,
        <tomotree.Cell object at 0x729829f6a540>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6af60>,
        <tomotree.Cell object at 0x729829f6af90>,
        <tomotree.Cell object at 0x729829f6afc0>,
        <tomotree.Cell object at 0x729829f6aff0>,
        <tomotree.Cell object at 0x729829f6b020>,
        <tomotree.Cell object at 0x729829f6b050>,
        <tomotree.Cell object at 0x729829f6b080>,
        <tomotree.Cell object at 0x729829f6b0b0>,
        <tomotree.Cell object at 0x729829f6b0e0>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6bb00>,
        <tomotree.Cell object at 0x729829f6bb30>,
        <tomotree.Cell object at 0x729829f6bb60>,
        <tomotree.Cell object at 0x729829f6bb90>,
        <tomotree.Cell object at 0x729829f6bbc0>,
        <tomotree.Cell object at 0x729829f6bbf0>,
        <tomotree.Cell object at 0x729829f6bc20>,
        <tomotree.Cell object at 0x729829f6bc50>,
        <tomotree.Cell object at 0x729829f6bc80>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f906b0>,
        <tomotree.Cell object at 0x729829f906e0>,
        <tomotree.Cell object at 0x729829f90710>,
        <tomotree.Cell object at 0x729829f90740>,
        <tomotree.Cell object at 0x729829f90770>,
        <tomotree.Cell object at 0x729829f907a0>,
        <tomotree.Cell object at 0x729829f907d0>,
        <tomotree.Cell object at 0x729829f90800>,
        <tomotree.Cell object at 0x729829f90830>,
        <tomotree.Cell object at 0x729829f90860>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f91250>,
        <tomotree.Cell object at 0x729829f91280>,
        <tomotree.Cell object at 0x729829f912b0>,
        <tomotree.Cell object at 0x729829f912e0>,
        <tomotree.Cell object at 0x729829f91310>,
        <tomotree.Cell object at 0x729829f91340>,
        <tomotree.Cell object at 0x729829f91370>,
        <tomotree.Cell object at 0x729829f913a0>,
        <tomotree.Cell object at 0x729829f913d0>,
        <tomotree.Cell object at 0x729829f91400>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91df0>,
        <tomotree.Cell object at 0x729829f91e20>,
        <tomotree.Cell object at 0x729829f91e50>,
        <tomotree.Cell object at 0x729829f91e80>,
        <tomotree.Cell object at 0x729829f91eb0>,
        <tomotree.Cell object at 0x729829f91ee0>,
        <tomotree.Cell object at 0x729829f91f10>,
        <tomotree.Cell object at 0x729829f91f40>,
        <tomotree.Cell object at 0x729829f91f70>,
        <tomotree.Cell object at 0x729829f91fa0>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f92960>,
        <tomotree.Cell object at 0x729829f92990>,
        <tomotree.Cell object at 0x729829f929c0>,
        <tomotree.Cell object at 0x729829f929f0>,
        <tomotree.Cell object at 0x729829f92a20>,
        <tomotree.Cell object at 0x729829f92a50>,
        <tomotree.Cell object at 0x729829f92a80>,
        <tomotree.Cell object at 0x729829f92ab0>,
        <tomotree.Cell object at 0x729829f92ae0>,
        <tomotree.Cell object at 0x729829f92b10>,
        <tomotree.Cell object at 0x729829f92b40>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f93500>,
        <tomotree.Cell object at 0x729829f93530>,
        <tomotree.Cell object at 0x729829f93560>,
        <tomotree.Cell object at 0x729829f93590>,
        <tomotree.Cell object at 0x729829f935c0>,
        <tomotree.Cell object at 0x729829f935f0>,
        <tomotree.Cell object at 0x729829f93620>,
        <tomotree.Cell object at 0x729829f93650>,
        <tomotree.Cell object at 0x729829f93680>,
        <tomotree.Cell object at 0x729829f936b0>,
        <tomotree.Cell object at 0x729829f936e0>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829db80e0>,
        <tomotree.Cell object at 0x729829db8110>,
        <tomotree.Cell object at 0x729829db8140>,
        <tomotree.Cell object at 0x729829db8170>,
        <tomotree.Cell object at 0x729829db81a0>,
        <tomotree.Cell object at 0x729829db81d0>,
        <tomotree.Cell object at 0x729829db8200>,
        <tomotree.Cell object at 0x729829db8230>,
        <tomotree.Cell object at 0x729829db8260>,
        <tomotree.Cell object at 0x729829db8290>,
        <tomotree.Cell object at 0x729829db82c0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8c80>,
        <tomotree.Cell object at 0x729829db8cb0>,
        <tomotree.Cell object at 0x729829db8ce0>,
        <tomotree.Cell object at 0x729829db8d10>,
        <tomotree.Cell object at 0x729829db8d40>,
        <tomotree.Cell object at 0x729829db8d70>,
        <tomotree.Cell object at 0x729829db8da0>,
        <tomotree.Cell object at 0x729829db8dd0>,
        <tomotree.Cell object at 0x729829db8e00>,
        <tomotree.Cell object at 0x729829db8e30>,
        <tomotree.Cell object at 0x729829db8e60>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9820>,
        <tomotree.Cell object at 0x729829db9850>,
        <tomotree.Cell object at 0x729829db9880>,
        <tomotree.Cell object at 0x729829db98b0>,
        <tomotree.Cell object at 0x729829db98e0>,
        <tomotree.Cell object at 0x729829db9910>,
        <tomotree.Cell object at 0x729829db9940>,
        <tomotree.Cell object at 0x729829db9970>,
        <tomotree.Cell object at 0x729829db99a0>,
        <tomotree.Cell object at 0x729829db99d0>,
        <tomotree.Cell object at 0x729829db9a00>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829dba3c0>,
        <tomotree.Cell object at 0x729829dba3f0>,
        <tomotree.Cell object at 0x729829dba420>,
        <tomotree.Cell object at 0x729829dba450>,
        <tomotree.Cell object at 0x729829dba480>,
        <tomotree.Cell object at 0x729829dba4b0>,
        <tomotree.Cell object at 0x729829dba4e0>,
        <tomotree.Cell object at 0x729829dba510>,
        <tomotree.Cell object at 0x729829dba540>,
        <tomotree.Cell object at 0x729829dba570>,
        <tomotree.Cell object at 0x729829dba5a0>,
        <tomotree.Cell object at 0x729829dba5d0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dbaf30>,
        <tomotree.Cell object at 0x729829dbaf60>,
        <tomotree.Cell object at 0x729829dbaf90>,
        <tomotree.Cell object at 0x729829dbafc0>,
        <tomotree.Cell object at 0x729829dbaff0>,
        <tomotree.Cell object at 0x729829dbb020>,
        <tomotree.Cell object at 0x729829dbb050>,
        <tomotree.Cell object at 0x729829dbb080>,
        <tomotree.Cell object at 0x729829dbb0b0>,
        <tomotree.Cell object at 0x729829dbb0e0>,
        <tomotree.Cell object at 0x729829dbb110>,
        <tomotree.Cell object at 0x729829dbb140>,
        <tomotree.Cell object at 0x729829dbb170>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbbad0>,
        <tomotree.Cell object at 0x729829dbbb00>,
        <tomotree.Cell object at 0x729829dbbb30>,
        <tomotree.Cell object at 0x729829dbbb60>,
        <tomotree.Cell object at 0x729829dbbb90>,
        <tomotree.Cell object at 0x729829dbbbc0>,
        <tomotree.Cell object at 0x729829dbbbf0>,
        <tomotree.Cell object at 0x729829dbbc20>,
        <tomotree.Cell object at 0x729829dbbc50>,
        <tomotree.Cell object at 0x729829dbbc80>,
        <tomotree.Cell object at 0x729829dbbcb0>,
        <tomotree.Cell object at 0x729829dbbce0>,
        <tomotree.Cell object at 0x729829dbbd10>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dd86b0>,
        <tomotree.Cell object at 0x729829dd86e0>,
        <tomotree.Cell object at 0x729829dd8710>,
        <tomotree.Cell object at 0x729829dd8740>,
        <tomotree.Cell object at 0x729829dd8770>,
        <tomotree.Cell object at 0x729829dd87a0>,
        <tomotree.Cell object at 0x729829dd87d0>,
        <tomotree.Cell object at 0x729829dd8800>,
        <tomotree.Cell object at 0x729829dd8830>,
        <tomotree.Cell object at 0x729829dd8860>,
        <tomotree.Cell object at 0x729829dd8890>,
        <tomotree.Cell object at 0x729829dd88c0>,
        <tomotree.Cell object at 0x729829dd88f0>,
        <tomotree.Cell object at 0x729829dd8920>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd9250>,
        <tomotree.Cell object at 0x729829dd9280>,
        <tomotree.Cell object at 0x729829dd92b0>,
        <tomotree.Cell object at 0x729829dd92e0>,
        <tomotree.Cell object at 0x729829dd9310>,
        <tomotree.Cell object at 0x729829dd9340>,
        <tomotree.Cell object at 0x729829dd9370>,
        <tomotree.Cell object at 0x729829dd93a0>,
        <tomotree.Cell object at 0x729829dd93d0>,
        <tomotree.Cell object at 0x729829dd9400>,
        <tomotree.Cell object at 0x729829dd9430>,
        <tomotree.Cell object at 0x729829dd9460>,
        <tomotree.Cell object at 0x729829dd9490>,
        <tomotree.Cell object at 0x729829dd94c0>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9e20>,
        <tomotree.Cell object at 0x729829dd9e50>,
        <tomotree.Cell object at 0x729829dd9e80>,
        <tomotree.Cell object at 0x729829dd9eb0>,
        <tomotree.Cell object at 0x729829dd9ee0>,
        <tomotree.Cell object at 0x729829dd9f10>,
        <tomotree.Cell object at 0x729829dd9f40>,
        <tomotree.Cell object at 0x729829dd9f70>,
        <tomotree.Cell object at 0x729829dd9fa0>,
        <tomotree.Cell object at 0x729829dd9fd0>,
        <tomotree.Cell object at 0x729829dda000>,
        <tomotree.Cell object at 0x729829dda030>,
        <tomotree.Cell object at 0x729829dda060>,
        <tomotree.Cell object at 0x729829dda090>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda9c0>,
        <tomotree.Cell object at 0x729829dda9f0>,
        <tomotree.Cell object at 0x729829ddaa20>,
        <tomotree.Cell object at 0x729829ddaa50>,
        <tomotree.Cell object at 0x729829ddaa80>,
        <tomotree.Cell object at 0x729829ddaab0>,
        <tomotree.Cell object at 0x729829ddaae0>,
        <tomotree.Cell object at 0x729829ddab10>,
        <tomotree.Cell object at 0x729829ddab40>,
        <tomotree.Cell object at 0x729829ddab70>,
        <tomotree.Cell object at 0x729829ddaba0>,
        <tomotree.Cell object at 0x729829ddabd0>,
        <tomotree.Cell object at 0x729829ddac00>,
        <tomotree.Cell object at 0x729829ddac30>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddb560>,
        <tomotree.Cell object at 0x729829ddb590>,
        <tomotree.Cell object at 0x729829ddb5c0>,
        <tomotree.Cell object at 0x729829ddb5f0>,
        <tomotree.Cell object at 0x729829ddb620>,
        <tomotree.Cell object at 0x729829ddb650>,
        <tomotree.Cell object at 0x729829ddb680>,
        <tomotree.Cell object at 0x729829ddb6b0>,
        <tomotree.Cell object at 0x729829ddb6e0>,
        <tomotree.Cell object at 0x729829ddb710>,
        <tomotree.Cell object at 0x729829ddb740>,
        <tomotree.Cell object at 0x729829ddb770>,
        <tomotree.Cell object at 0x729829ddb7a0>,
        <tomotree.Cell object at 0x729829ddb7d0>,
        <tomotree.Cell object at 0x729829ddb800>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829dfc140>,
        <tomotree.Cell object at 0x729829dfc170>,
        <tomotree.Cell object at 0x729829dfc1a0>,
        <tomotree.Cell object at 0x729829dfc1d0>,
        <tomotree.Cell object at 0x729829dfc200>,
        <tomotree.Cell object at 0x729829dfc230>,
        <tomotree.Cell object at 0x729829dfc260>,
        <tomotree.Cell object at 0x729829dfc290>,
        <tomotree.Cell object at 0x729829dfc2c0>,
        <tomotree.Cell object at 0x729829dfc2f0>,
        <tomotree.Cell object at 0x729829dfc320>,
        <tomotree.Cell object at 0x729829dfc350>,
        <tomotree.Cell object at 0x729829dfc380>,
        <tomotree.Cell object at 0x729829dfc3b0>,
        <tomotree.Cell object at 0x729829dfc3e0>,
        <tomotree.Cell object at 0x729829dfcd10>,
        <tomotree.Cell object at 0x729829dfcd40>,
        <tomotree.Cell object at 0x729829dfcd70>,
        <tomotree.Cell object at 0x729829dfcda0>,
        <tomotree.Cell object at 0x729829dfcdd0>,
        <tomotree.Cell object at 0x729829dfce00>,
        <tomotree.Cell object at 0x729829dfce30>,
        <tomotree.Cell object at 0x729829dfce60>,
        <tomotree.Cell object at 0x729829dfce90>,
        <tomotree.Cell object at 0x729829dfcec0>,
        <tomotree.Cell object at 0x729829dfcef0>,
        <tomotree.Cell object at 0x729829dfcf20>,
        <tomotree.Cell object at 0x729829dfcf50>,
        <tomotree.Cell object at 0x729829dfd8e0>,
        <tomotree.Cell object at 0x729829dfd910>,
        <tomotree.Cell object at 0x729829dfd940>,
        <tomotree.Cell object at 0x729829dfd970>,
        <tomotree.Cell object at 0x729829dfd9a0>,
        <tomotree.Cell object at 0x729829dfd9d0>,
        <tomotree.Cell object at 0x729829dfda00>,
        <tomotree.Cell object at 0x729829dfda30>,
        <tomotree.Cell object at 0x729829dfda60>,
        <tomotree.Cell object at 0x729829dfda90>], dtype=object),
 <tomotree.Ray at 0x72982a072e70>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efe030>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efeba0>,
        <tomotree.Cell object at 0x729829efebd0>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829eff710>,
        <tomotree.Cell object at 0x729829eff740>,
        <tomotree.Cell object at 0x729829eff770>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829f242c0>,
        <tomotree.Cell object at 0x729829f242f0>,
        <tomotree.Cell object at 0x729829f24320>,
        <tomotree.Cell object at 0x729829f24350>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24e60>,
        <tomotree.Cell object at 0x729829f24e90>,
        <tomotree.Cell object at 0x729829f24ec0>,
        <tomotree.Cell object at 0x729829f24ef0>,
        <tomotree.Cell object at 0x729829f24f20>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f259d0>,
        <tomotree.Cell object at 0x729829f25a00>,
        <tomotree.Cell object at 0x729829f25a30>,
        <tomotree.Cell object at 0x729829f25a60>,
        <tomotree.Cell object at 0x729829f25a90>,
        <tomotree.Cell object at 0x729829f25ac0>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f26570>,
        <tomotree.Cell object at 0x729829f265a0>,
        <tomotree.Cell object at 0x729829f265d0>,
        <tomotree.Cell object at 0x729829f26600>,
        <tomotree.Cell object at 0x729829f26630>,
        <tomotree.Cell object at 0x729829f26660>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f270e0>,
        <tomotree.Cell object at 0x729829f27110>,
        <tomotree.Cell object at 0x729829f27140>,
        <tomotree.Cell object at 0x729829f27170>,
        <tomotree.Cell object at 0x729829f271a0>,
        <tomotree.Cell object at 0x729829f271d0>,
        <tomotree.Cell object at 0x729829f27200>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f27c80>,
        <tomotree.Cell object at 0x729829f27cb0>,
        <tomotree.Cell object at 0x729829f27ce0>,
        <tomotree.Cell object at 0x729829f27d10>,
        <tomotree.Cell object at 0x729829f27d40>,
        <tomotree.Cell object at 0x729829f27d70>,
        <tomotree.Cell object at 0x729829f27da0>,
        <tomotree.Cell object at 0x729829f27dd0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f48860>,
        <tomotree.Cell object at 0x729829f48890>,
        <tomotree.Cell object at 0x729829f488c0>,
        <tomotree.Cell object at 0x729829f488f0>,
        <tomotree.Cell object at 0x729829f48920>,
        <tomotree.Cell object at 0x729829f48950>,
        <tomotree.Cell object at 0x729829f48980>,
        <tomotree.Cell object at 0x729829f489b0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f49400>,
        <tomotree.Cell object at 0x729829f49430>,
        <tomotree.Cell object at 0x729829f49460>,
        <tomotree.Cell object at 0x729829f49490>,
        <tomotree.Cell object at 0x729829f494c0>,
        <tomotree.Cell object at 0x729829f494f0>,
        <tomotree.Cell object at 0x729829f49520>,
        <tomotree.Cell object at 0x729829f49550>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f49f70>,
        <tomotree.Cell object at 0x729829f49fa0>,
        <tomotree.Cell object at 0x729829f49fd0>,
        <tomotree.Cell object at 0x729829f4a000>,
        <tomotree.Cell object at 0x729829f4a030>,
        <tomotree.Cell object at 0x729829f4a060>,
        <tomotree.Cell object at 0x729829f4a090>,
        <tomotree.Cell object at 0x729829f4a0c0>,
        <tomotree.Cell object at 0x729829f4a0f0>,
        <tomotree.Cell object at 0x729829f4a120>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4ab10>,
        <tomotree.Cell object at 0x729829f4ab40>,
        <tomotree.Cell object at 0x729829f4ab70>,
        <tomotree.Cell object at 0x729829f4aba0>,
        <tomotree.Cell object at 0x729829f4abd0>,
        <tomotree.Cell object at 0x729829f4ac00>,
        <tomotree.Cell object at 0x729829f4ac30>,
        <tomotree.Cell object at 0x729829f4ac60>,
        <tomotree.Cell object at 0x729829f4ac90>,
        <tomotree.Cell object at 0x729829f4acc0>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4b6b0>,
        <tomotree.Cell object at 0x729829f4b6e0>,
        <tomotree.Cell object at 0x729829f4b710>,
        <tomotree.Cell object at 0x729829f4b740>,
        <tomotree.Cell object at 0x729829f4b770>,
        <tomotree.Cell object at 0x729829f4b7a0>,
        <tomotree.Cell object at 0x729829f4b7d0>,
        <tomotree.Cell object at 0x729829f4b800>,
        <tomotree.Cell object at 0x729829f4b830>,
        <tomotree.Cell object at 0x729829f4b860>,
        <tomotree.Cell object at 0x729829f4b890>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f68290>,
        <tomotree.Cell object at 0x729829f682c0>,
        <tomotree.Cell object at 0x729829f682f0>,
        <tomotree.Cell object at 0x729829f68320>,
        <tomotree.Cell object at 0x729829f68350>,
        <tomotree.Cell object at 0x729829f68380>,
        <tomotree.Cell object at 0x729829f683b0>,
        <tomotree.Cell object at 0x729829f683e0>,
        <tomotree.Cell object at 0x729829f68410>,
        <tomotree.Cell object at 0x729829f68440>,
        <tomotree.Cell object at 0x729829f68470>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f68e30>,
        <tomotree.Cell object at 0x729829f68e60>,
        <tomotree.Cell object at 0x729829f68e90>,
        <tomotree.Cell object at 0x729829f68ec0>,
        <tomotree.Cell object at 0x729829f68ef0>,
        <tomotree.Cell object at 0x729829f68f20>,
        <tomotree.Cell object at 0x729829f68f50>,
        <tomotree.Cell object at 0x729829f68f80>,
        <tomotree.Cell object at 0x729829f68fb0>,
        <tomotree.Cell object at 0x729829f68fe0>,
        <tomotree.Cell object at 0x729829f69010>,
        <tomotree.Cell object at 0x729829f69040>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f699d0>,
        <tomotree.Cell object at 0x729829f69a00>,
        <tomotree.Cell object at 0x729829f69a30>,
        <tomotree.Cell object at 0x729829f69a60>,
        <tomotree.Cell object at 0x729829f69a90>,
        <tomotree.Cell object at 0x729829f69ac0>,
        <tomotree.Cell object at 0x729829f69af0>,
        <tomotree.Cell object at 0x729829f69b20>,
        <tomotree.Cell object at 0x729829f69b50>,
        <tomotree.Cell object at 0x729829f69b80>,
        <tomotree.Cell object at 0x729829f69bb0>,
        <tomotree.Cell object at 0x729829f69be0>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f6a570>,
        <tomotree.Cell object at 0x729829f6a5a0>,
        <tomotree.Cell object at 0x729829f6a5d0>,
        <tomotree.Cell object at 0x729829f6a600>,
        <tomotree.Cell object at 0x729829f6a630>,
        <tomotree.Cell object at 0x729829f6a660>,
        <tomotree.Cell object at 0x729829f6a690>,
        <tomotree.Cell object at 0x729829f6a6c0>,
        <tomotree.Cell object at 0x729829f6a6f0>,
        <tomotree.Cell object at 0x729829f6a720>,
        <tomotree.Cell object at 0x729829f6a750>,
        <tomotree.Cell object at 0x729829f6a780>,
        <tomotree.Cell object at 0x729829f6a7b0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6b110>,
        <tomotree.Cell object at 0x729829f6b140>,
        <tomotree.Cell object at 0x729829f6b170>,
        <tomotree.Cell object at 0x729829f6b1a0>,
        <tomotree.Cell object at 0x729829f6b1d0>,
        <tomotree.Cell object at 0x729829f6b200>,
        <tomotree.Cell object at 0x729829f6b230>,
        <tomotree.Cell object at 0x729829f6b260>,
        <tomotree.Cell object at 0x729829f6b290>,
        <tomotree.Cell object at 0x729829f6b2c0>,
        <tomotree.Cell object at 0x729829f6b2f0>,
        <tomotree.Cell object at 0x729829f6b320>,
        <tomotree.Cell object at 0x729829f6b350>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6bcb0>,
        <tomotree.Cell object at 0x729829f6bce0>,
        <tomotree.Cell object at 0x729829f6bd10>,
        <tomotree.Cell object at 0x729829f6bd40>,
        <tomotree.Cell object at 0x729829f6bd70>,
        <tomotree.Cell object at 0x729829f6bda0>,
        <tomotree.Cell object at 0x729829f6bdd0>,
        <tomotree.Cell object at 0x729829f6be00>,
        <tomotree.Cell object at 0x729829f6be30>,
        <tomotree.Cell object at 0x729829f6be60>,
        <tomotree.Cell object at 0x729829f6be90>,
        <tomotree.Cell object at 0x729829f6bec0>,
        <tomotree.Cell object at 0x729829f6bef0>,
        <tomotree.Cell object at 0x729829f6bf20>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90890>,
        <tomotree.Cell object at 0x729829f908c0>,
        <tomotree.Cell object at 0x729829f908f0>,
        <tomotree.Cell object at 0x729829f90920>,
        <tomotree.Cell object at 0x729829f90950>,
        <tomotree.Cell object at 0x729829f90980>,
        <tomotree.Cell object at 0x729829f909b0>,
        <tomotree.Cell object at 0x729829f909e0>,
        <tomotree.Cell object at 0x729829f90a10>,
        <tomotree.Cell object at 0x729829f90a40>,
        <tomotree.Cell object at 0x729829f90a70>,
        <tomotree.Cell object at 0x729829f90aa0>,
        <tomotree.Cell object at 0x729829f90ad0>,
        <tomotree.Cell object at 0x729829f90b00>,
        <tomotree.Cell object at 0x729829f90b30>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f91430>,
        <tomotree.Cell object at 0x729829f91460>,
        <tomotree.Cell object at 0x729829f91490>,
        <tomotree.Cell object at 0x729829f914c0>,
        <tomotree.Cell object at 0x729829f914f0>,
        <tomotree.Cell object at 0x729829f91520>,
        <tomotree.Cell object at 0x729829f91550>,
        <tomotree.Cell object at 0x729829f91580>,
        <tomotree.Cell object at 0x729829f915b0>,
        <tomotree.Cell object at 0x729829f915e0>,
        <tomotree.Cell object at 0x729829f91610>,
        <tomotree.Cell object at 0x729829f91640>,
        <tomotree.Cell object at 0x729829f91670>,
        <tomotree.Cell object at 0x729829f916a0>,
        <tomotree.Cell object at 0x729829f916d0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91fd0>,
        <tomotree.Cell object at 0x729829f92000>,
        <tomotree.Cell object at 0x729829f92030>,
        <tomotree.Cell object at 0x729829f92060>,
        <tomotree.Cell object at 0x729829f92090>,
        <tomotree.Cell object at 0x729829f920c0>,
        <tomotree.Cell object at 0x729829f920f0>,
        <tomotree.Cell object at 0x729829f92120>,
        <tomotree.Cell object at 0x729829f92150>,
        <tomotree.Cell object at 0x729829f92180>,
        <tomotree.Cell object at 0x729829f921b0>,
        <tomotree.Cell object at 0x729829f921e0>,
        <tomotree.Cell object at 0x729829f92210>,
        <tomotree.Cell object at 0x729829f92240>,
        <tomotree.Cell object at 0x729829f92270>,
        <tomotree.Cell object at 0x729829f922a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f92b70>,
        <tomotree.Cell object at 0x729829f92ba0>,
        <tomotree.Cell object at 0x729829f92bd0>,
        <tomotree.Cell object at 0x729829f92c00>,
        <tomotree.Cell object at 0x729829f92c30>,
        <tomotree.Cell object at 0x729829f92c60>,
        <tomotree.Cell object at 0x729829f92c90>,
        <tomotree.Cell object at 0x729829f92cc0>,
        <tomotree.Cell object at 0x729829f92cf0>,
        <tomotree.Cell object at 0x729829f92d20>,
        <tomotree.Cell object at 0x729829f92d50>,
        <tomotree.Cell object at 0x729829f92d80>,
        <tomotree.Cell object at 0x729829f92db0>,
        <tomotree.Cell object at 0x729829f92de0>,
        <tomotree.Cell object at 0x729829f92e10>,
        <tomotree.Cell object at 0x729829f92e40>,
        <tomotree.Cell object at 0x729829f92e70>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f93710>,
        <tomotree.Cell object at 0x729829f93740>,
        <tomotree.Cell object at 0x729829f93770>,
        <tomotree.Cell object at 0x729829f937a0>,
        <tomotree.Cell object at 0x729829f937d0>,
        <tomotree.Cell object at 0x729829f93800>,
        <tomotree.Cell object at 0x729829f93830>,
        <tomotree.Cell object at 0x729829f93860>,
        <tomotree.Cell object at 0x729829f93890>,
        <tomotree.Cell object at 0x729829f938c0>,
        <tomotree.Cell object at 0x729829f938f0>,
        <tomotree.Cell object at 0x729829f93920>,
        <tomotree.Cell object at 0x729829f93950>,
        <tomotree.Cell object at 0x729829f93980>,
        <tomotree.Cell object at 0x729829f939b0>,
        <tomotree.Cell object at 0x729829f939e0>,
        <tomotree.Cell object at 0x729829f93a10>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829db82f0>,
        <tomotree.Cell object at 0x729829db8320>,
        <tomotree.Cell object at 0x729829db8350>,
        <tomotree.Cell object at 0x729829db8380>,
        <tomotree.Cell object at 0x729829db83b0>,
        <tomotree.Cell object at 0x729829db83e0>,
        <tomotree.Cell object at 0x729829db8410>,
        <tomotree.Cell object at 0x729829db8440>,
        <tomotree.Cell object at 0x729829db8470>,
        <tomotree.Cell object at 0x729829db84a0>,
        <tomotree.Cell object at 0x729829db84d0>,
        <tomotree.Cell object at 0x729829db8500>,
        <tomotree.Cell object at 0x729829db8530>,
        <tomotree.Cell object at 0x729829db8560>,
        <tomotree.Cell object at 0x729829db8590>,
        <tomotree.Cell object at 0x729829db85c0>,
        <tomotree.Cell object at 0x729829db85f0>,
        <tomotree.Cell object at 0x729829db8620>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db8e90>,
        <tomotree.Cell object at 0x729829db8ec0>,
        <tomotree.Cell object at 0x729829db8ef0>,
        <tomotree.Cell object at 0x729829db8f20>,
        <tomotree.Cell object at 0x729829db8f50>,
        <tomotree.Cell object at 0x729829db8f80>,
        <tomotree.Cell object at 0x729829db8fb0>,
        <tomotree.Cell object at 0x729829db8fe0>,
        <tomotree.Cell object at 0x729829db9010>,
        <tomotree.Cell object at 0x729829db9040>,
        <tomotree.Cell object at 0x729829db9070>,
        <tomotree.Cell object at 0x729829db90a0>,
        <tomotree.Cell object at 0x729829db90d0>,
        <tomotree.Cell object at 0x729829db9100>,
        <tomotree.Cell object at 0x729829db9130>,
        <tomotree.Cell object at 0x729829db9160>,
        <tomotree.Cell object at 0x729829db9190>,
        <tomotree.Cell object at 0x729829db91c0>,
        <tomotree.Cell object at 0x729829db91f0>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9a30>,
        <tomotree.Cell object at 0x729829db9a60>,
        <tomotree.Cell object at 0x729829db9a90>,
        <tomotree.Cell object at 0x729829db9ac0>,
        <tomotree.Cell object at 0x729829db9af0>,
        <tomotree.Cell object at 0x729829db9b20>,
        <tomotree.Cell object at 0x729829db9b50>,
        <tomotree.Cell object at 0x729829db9b80>,
        <tomotree.Cell object at 0x729829db9bb0>,
        <tomotree.Cell object at 0x729829db9be0>,
        <tomotree.Cell object at 0x729829db9c10>,
        <tomotree.Cell object at 0x729829db9c40>,
        <tomotree.Cell object at 0x729829db9c70>,
        <tomotree.Cell object at 0x729829db9ca0>,
        <tomotree.Cell object at 0x729829db9cd0>,
        <tomotree.Cell object at 0x729829db9d00>,
        <tomotree.Cell object at 0x729829db9d30>,
        <tomotree.Cell object at 0x729829db9d60>,
        <tomotree.Cell object at 0x729829db9d90>,
        <tomotree.Cell object at 0x729829db9dc0>,
        <tomotree.Cell object at 0x729829dba600>,
        <tomotree.Cell object at 0x729829dba630>,
        <tomotree.Cell object at 0x729829dba660>,
        <tomotree.Cell object at 0x729829dba690>,
        <tomotree.Cell object at 0x729829dba6c0>,
        <tomotree.Cell object at 0x729829dba6f0>,
        <tomotree.Cell object at 0x729829dba720>,
        <tomotree.Cell object at 0x729829dba750>,
        <tomotree.Cell object at 0x729829dba780>,
        <tomotree.Cell object at 0x729829dba7b0>,
        <tomotree.Cell object at 0x729829dba7e0>,
        <tomotree.Cell object at 0x729829dba810>,
        <tomotree.Cell object at 0x729829dba840>,
        <tomotree.Cell object at 0x729829dba870>,
        <tomotree.Cell object at 0x729829dba8a0>,
        <tomotree.Cell object at 0x729829dba8d0>,
        <tomotree.Cell object at 0x729829dba900>,
        <tomotree.Cell object at 0x729829dba930>,
        <tomotree.Cell object at 0x729829dba960>,
        <tomotree.Cell object at 0x729829dbb1a0>,
        <tomotree.Cell object at 0x729829dbb1d0>,
        <tomotree.Cell object at 0x729829dbb200>,
        <tomotree.Cell object at 0x729829dbb230>,
        <tomotree.Cell object at 0x729829dbb260>,
        <tomotree.Cell object at 0x729829dbb290>,
        <tomotree.Cell object at 0x729829dbb2c0>,
        <tomotree.Cell object at 0x729829dbb2f0>,
        <tomotree.Cell object at 0x729829dbb320>,
        <tomotree.Cell object at 0x729829dbb350>,
        <tomotree.Cell object at 0x729829dbb380>,
        <tomotree.Cell object at 0x729829dbb3b0>,
        <tomotree.Cell object at 0x729829dbb3e0>,
        <tomotree.Cell object at 0x729829dbb410>,
        <tomotree.Cell object at 0x729829dbb440>,
        <tomotree.Cell object at 0x729829dbb470>,
        <tomotree.Cell object at 0x729829dbb4a0>,
        <tomotree.Cell object at 0x729829dbb4d0>,
        <tomotree.Cell object at 0x729829dbbd40>,
        <tomotree.Cell object at 0x729829dbbd70>,
        <tomotree.Cell object at 0x729829dbbda0>,
        <tomotree.Cell object at 0x729829dbbdd0>,
        <tomotree.Cell object at 0x729829dbbe00>,
        <tomotree.Cell object at 0x729829dbbe30>,
        <tomotree.Cell object at 0x729829dbbe60>,
        <tomotree.Cell object at 0x729829dbbe90>,
        <tomotree.Cell object at 0x729829dbbec0>,
        <tomotree.Cell object at 0x729829dbbef0>,
        <tomotree.Cell object at 0x729829dbbf20>,
        <tomotree.Cell object at 0x729829dbbf50>,
        <tomotree.Cell object at 0x729829dbbf80>,
        <tomotree.Cell object at 0x729829dbbfb0>,
        <tomotree.Cell object at 0x729829dbbfe0>,
        <tomotree.Cell object at 0x729829dd8050>,
        <tomotree.Cell object at 0x729829dd8080>,
        <tomotree.Cell object at 0x729829dd80b0>,
        <tomotree.Cell object at 0x729829dd8950>,
        <tomotree.Cell object at 0x729829dd8980>,
        <tomotree.Cell object at 0x729829dd89b0>,
        <tomotree.Cell object at 0x729829dd89e0>,
        <tomotree.Cell object at 0x729829dd8a10>,
        <tomotree.Cell object at 0x729829dd8a40>,
        <tomotree.Cell object at 0x729829dd8a70>,
        <tomotree.Cell object at 0x729829dd8aa0>,
        <tomotree.Cell object at 0x729829dd8ad0>,
        <tomotree.Cell object at 0x729829dd8b00>,
        <tomotree.Cell object at 0x729829dd8b30>,
        <tomotree.Cell object at 0x729829dd8b60>,
        <tomotree.Cell object at 0x729829dd8b90>,
        <tomotree.Cell object at 0x729829dd8bc0>,
        <tomotree.Cell object at 0x729829dd8bf0>,
        <tomotree.Cell object at 0x729829dd8c20>,
        <tomotree.Cell object at 0x729829dd94f0>,
        <tomotree.Cell object at 0x729829dd9520>,
        <tomotree.Cell object at 0x729829dd9550>,
        <tomotree.Cell object at 0x729829dd9580>,
        <tomotree.Cell object at 0x729829dd95b0>,
        <tomotree.Cell object at 0x729829dd95e0>,
        <tomotree.Cell object at 0x729829dd9610>,
        <tomotree.Cell object at 0x729829dd9640>,
        <tomotree.Cell object at 0x729829dd9670>,
        <tomotree.Cell object at 0x729829dd96a0>,
        <tomotree.Cell object at 0x729829dd96d0>,
        <tomotree.Cell object at 0x729829dd9700>,
        <tomotree.Cell object at 0x729829dd9730>,
        <tomotree.Cell object at 0x729829dd9760>,
        <tomotree.Cell object at 0x729829dd9790>,
        <tomotree.Cell object at 0x729829dd97c0>,
        <tomotree.Cell object at 0x729829dda0c0>,
        <tomotree.Cell object at 0x729829dda0f0>,
        <tomotree.Cell object at 0x729829dda120>,
        <tomotree.Cell object at 0x729829dda150>,
        <tomotree.Cell object at 0x729829dda180>,
        <tomotree.Cell object at 0x729829dda1b0>,
        <tomotree.Cell object at 0x729829dda1e0>,
        <tomotree.Cell object at 0x729829dda210>,
        <tomotree.Cell object at 0x729829dda240>,
        <tomotree.Cell object at 0x729829dda270>,
        <tomotree.Cell object at 0x729829dda2a0>,
        <tomotree.Cell object at 0x729829dda2d0>,
        <tomotree.Cell object at 0x729829dda300>,
        <tomotree.Cell object at 0x729829dda330>,
        <tomotree.Cell object at 0x729829ddac60>,
        <tomotree.Cell object at 0x729829ddac90>,
        <tomotree.Cell object at 0x729829ddacc0>,
        <tomotree.Cell object at 0x729829ddacf0>,
        <tomotree.Cell object at 0x729829ddad20>,
        <tomotree.Cell object at 0x729829ddad50>,
        <tomotree.Cell object at 0x729829ddad80>,
        <tomotree.Cell object at 0x729829ddadb0>,
        <tomotree.Cell object at 0x729829ddade0>,
        <tomotree.Cell object at 0x729829ddae10>,
        <tomotree.Cell object at 0x729829ddae40>,
        <tomotree.Cell object at 0x729829ddae70>,
        <tomotree.Cell object at 0x729829ddaea0>,
        <tomotree.Cell object at 0x729829ddb830>,
        <tomotree.Cell object at 0x729829ddb860>,
        <tomotree.Cell object at 0x729829ddb890>,
        <tomotree.Cell object at 0x729829ddb8c0>,
        <tomotree.Cell object at 0x729829ddb8f0>,
        <tomotree.Cell object at 0x729829ddb920>,
        <tomotree.Cell object at 0x729829ddb950>,
        <tomotree.Cell object at 0x729829ddb980>,
        <tomotree.Cell object at 0x729829ddb9b0>,
        <tomotree.Cell object at 0x729829ddb9e0>,
        <tomotree.Cell object at 0x729829ddba10>,
        <tomotree.Cell object at 0x729829dfc440>,
        <tomotree.Cell object at 0x729829dfc470>,
        <tomotree.Cell object at 0x729829dfc4a0>,
        <tomotree.Cell object at 0x729829dfc4d0>,
        <tomotree.Cell object at 0x729829dfc500>,
        <tomotree.Cell object at 0x729829dfc530>,
        <tomotree.Cell object at 0x729829dfc560>,
        <tomotree.Cell object at 0x729829dfc590>,
        <tomotree.Cell object at 0x729829dfc5c0>,
        <tomotree.Cell object at 0x729829dfd010>,
        <tomotree.Cell object at 0x729829dfd040>,
        <tomotree.Cell object at 0x729829dfd070>,
        <tomotree.Cell object at 0x729829dfd0a0>,
        <tomotree.Cell object at 0x729829dfd0d0>,
        <tomotree.Cell object at 0x729829dfd100>], dtype=object),
 <tomotree.Ray at 0x72982a072ed0>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efd4c0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efe060>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efec00>,
        <tomotree.Cell object at 0x729829efec30>,
        <tomotree.Cell object at 0x729829efec60>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829eff7a0>,
        <tomotree.Cell object at 0x729829eff7d0>,
        <tomotree.Cell object at 0x729829eff800>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829f24380>,
        <tomotree.Cell object at 0x729829f243b0>,
        <tomotree.Cell object at 0x729829f243e0>,
        <tomotree.Cell object at 0x729829f24410>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24f50>,
        <tomotree.Cell object at 0x729829f24f80>,
        <tomotree.Cell object at 0x729829f24fb0>,
        <tomotree.Cell object at 0x729829f24fe0>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f25af0>,
        <tomotree.Cell object at 0x729829f25b20>,
        <tomotree.Cell object at 0x729829f25b50>,
        <tomotree.Cell object at 0x729829f25b80>,
        <tomotree.Cell object at 0x729829f25bb0>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f26690>,
        <tomotree.Cell object at 0x729829f266c0>,
        <tomotree.Cell object at 0x729829f266f0>,
        <tomotree.Cell object at 0x729829f26720>,
        <tomotree.Cell object at 0x729829f26750>,
        <tomotree.Cell object at 0x729829f26780>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f27230>,
        <tomotree.Cell object at 0x729829f27260>,
        <tomotree.Cell object at 0x729829f27290>,
        <tomotree.Cell object at 0x729829f272c0>,
        <tomotree.Cell object at 0x729829f272f0>,
        <tomotree.Cell object at 0x729829f27320>,
        <tomotree.Cell object at 0x729829f27350>,
        <tomotree.Cell object at 0x729829f27380>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27e00>,
        <tomotree.Cell object at 0x729829f27e30>,
        <tomotree.Cell object at 0x729829f27e60>,
        <tomotree.Cell object at 0x729829f27e90>,
        <tomotree.Cell object at 0x729829f27ec0>,
        <tomotree.Cell object at 0x729829f27ef0>,
        <tomotree.Cell object at 0x729829f27f20>,
        <tomotree.Cell object at 0x729829f27f50>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f489e0>,
        <tomotree.Cell object at 0x729829f48a10>,
        <tomotree.Cell object at 0x729829f48a40>,
        <tomotree.Cell object at 0x729829f48a70>,
        <tomotree.Cell object at 0x729829f48aa0>,
        <tomotree.Cell object at 0x729829f48ad0>,
        <tomotree.Cell object at 0x729829f48b00>,
        <tomotree.Cell object at 0x729829f48b30>,
        <tomotree.Cell object at 0x729829f48b60>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f49580>,
        <tomotree.Cell object at 0x729829f495b0>,
        <tomotree.Cell object at 0x729829f495e0>,
        <tomotree.Cell object at 0x729829f49610>,
        <tomotree.Cell object at 0x729829f49640>,
        <tomotree.Cell object at 0x729829f49670>,
        <tomotree.Cell object at 0x729829f496a0>,
        <tomotree.Cell object at 0x729829f496d0>,
        <tomotree.Cell object at 0x729829f49700>,
        <tomotree.Cell object at 0x729829f49730>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f4a150>,
        <tomotree.Cell object at 0x729829f4a180>,
        <tomotree.Cell object at 0x729829f4a1b0>,
        <tomotree.Cell object at 0x729829f4a1e0>,
        <tomotree.Cell object at 0x729829f4a210>,
        <tomotree.Cell object at 0x729829f4a240>,
        <tomotree.Cell object at 0x729829f4a270>,
        <tomotree.Cell object at 0x729829f4a2a0>,
        <tomotree.Cell object at 0x729829f4a2d0>,
        <tomotree.Cell object at 0x729829f4a300>,
        <tomotree.Cell object at 0x729829f4a330>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4acf0>,
        <tomotree.Cell object at 0x729829f4ad20>,
        <tomotree.Cell object at 0x729829f4ad50>,
        <tomotree.Cell object at 0x729829f4ad80>,
        <tomotree.Cell object at 0x729829f4adb0>,
        <tomotree.Cell object at 0x729829f4ade0>,
        <tomotree.Cell object at 0x729829f4ae10>,
        <tomotree.Cell object at 0x729829f4ae40>,
        <tomotree.Cell object at 0x729829f4ae70>,
        <tomotree.Cell object at 0x729829f4aea0>,
        <tomotree.Cell object at 0x729829f4aed0>,
        <tomotree.Cell object at 0x729829f4af00>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4b8c0>,
        <tomotree.Cell object at 0x729829f4b8f0>,
        <tomotree.Cell object at 0x729829f4b920>,
        <tomotree.Cell object at 0x729829f4b950>,
        <tomotree.Cell object at 0x729829f4b980>,
        <tomotree.Cell object at 0x729829f4b9b0>,
        <tomotree.Cell object at 0x729829f4b9e0>,
        <tomotree.Cell object at 0x729829f4ba10>,
        <tomotree.Cell object at 0x729829f4ba40>,
        <tomotree.Cell object at 0x729829f4ba70>,
        <tomotree.Cell object at 0x729829f4baa0>,
        <tomotree.Cell object at 0x729829f4bad0>,
        <tomotree.Cell object at 0x729829f4bb00>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f684a0>,
        <tomotree.Cell object at 0x729829f684d0>,
        <tomotree.Cell object at 0x729829f68500>,
        <tomotree.Cell object at 0x729829f68530>,
        <tomotree.Cell object at 0x729829f68560>,
        <tomotree.Cell object at 0x729829f68590>,
        <tomotree.Cell object at 0x729829f685c0>,
        <tomotree.Cell object at 0x729829f685f0>,
        <tomotree.Cell object at 0x729829f68620>,
        <tomotree.Cell object at 0x729829f68650>,
        <tomotree.Cell object at 0x729829f68680>,
        <tomotree.Cell object at 0x729829f686b0>,
        <tomotree.Cell object at 0x729829f686e0>,
        <tomotree.Cell object at 0x729829f68710>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f69070>,
        <tomotree.Cell object at 0x729829f690a0>,
        <tomotree.Cell object at 0x729829f690d0>,
        <tomotree.Cell object at 0x729829f69100>,
        <tomotree.Cell object at 0x729829f69130>,
        <tomotree.Cell object at 0x729829f69160>,
        <tomotree.Cell object at 0x729829f69190>,
        <tomotree.Cell object at 0x729829f691c0>,
        <tomotree.Cell object at 0x729829f691f0>,
        <tomotree.Cell object at 0x729829f69220>,
        <tomotree.Cell object at 0x729829f69250>,
        <tomotree.Cell object at 0x729829f69280>,
        <tomotree.Cell object at 0x729829f692b0>,
        <tomotree.Cell object at 0x729829f692e0>,
        <tomotree.Cell object at 0x729829f69310>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69c10>,
        <tomotree.Cell object at 0x729829f69c40>,
        <tomotree.Cell object at 0x729829f69c70>,
        <tomotree.Cell object at 0x729829f69ca0>,
        <tomotree.Cell object at 0x729829f69cd0>,
        <tomotree.Cell object at 0x729829f69d00>,
        <tomotree.Cell object at 0x729829f69d30>,
        <tomotree.Cell object at 0x729829f69d60>,
        <tomotree.Cell object at 0x729829f69d90>,
        <tomotree.Cell object at 0x729829f69dc0>,
        <tomotree.Cell object at 0x729829f69df0>,
        <tomotree.Cell object at 0x729829f69e20>,
        <tomotree.Cell object at 0x729829f69e50>,
        <tomotree.Cell object at 0x729829f69e80>,
        <tomotree.Cell object at 0x729829f69eb0>,
        <tomotree.Cell object at 0x729829f69ee0>,
        <tomotree.Cell object at 0x729829f6a7e0>,
        <tomotree.Cell object at 0x729829f6a810>,
        <tomotree.Cell object at 0x729829f6a840>,
        <tomotree.Cell object at 0x729829f6a870>,
        <tomotree.Cell object at 0x729829f6a8a0>,
        <tomotree.Cell object at 0x729829f6a8d0>,
        <tomotree.Cell object at 0x729829f6a900>,
        <tomotree.Cell object at 0x729829f6a930>,
        <tomotree.Cell object at 0x729829f6a960>,
        <tomotree.Cell object at 0x729829f6a990>,
        <tomotree.Cell object at 0x729829f6a9c0>,
        <tomotree.Cell object at 0x729829f6a9f0>,
        <tomotree.Cell object at 0x729829f6aa20>,
        <tomotree.Cell object at 0x729829f6aa50>,
        <tomotree.Cell object at 0x729829f6aa80>,
        <tomotree.Cell object at 0x729829f6b380>,
        <tomotree.Cell object at 0x729829f6b3b0>,
        <tomotree.Cell object at 0x729829f6b3e0>,
        <tomotree.Cell object at 0x729829f6b410>,
        <tomotree.Cell object at 0x729829f6b440>,
        <tomotree.Cell object at 0x729829f6b470>,
        <tomotree.Cell object at 0x729829f6b4a0>,
        <tomotree.Cell object at 0x729829f6b4d0>,
        <tomotree.Cell object at 0x729829f6b500>,
        <tomotree.Cell object at 0x729829f6b530>,
        <tomotree.Cell object at 0x729829f6b560>,
        <tomotree.Cell object at 0x729829f6b590>,
        <tomotree.Cell object at 0x729829f6b5c0>,
        <tomotree.Cell object at 0x729829f6b5f0>,
        <tomotree.Cell object at 0x729829f6b620>,
        <tomotree.Cell object at 0x729829f6b650>,
        <tomotree.Cell object at 0x729829f6bf50>,
        <tomotree.Cell object at 0x729829f6bf80>,
        <tomotree.Cell object at 0x729829f6bfb0>,
        <tomotree.Cell object at 0x729829f6bfe0>,
        <tomotree.Cell object at 0x729829f90050>,
        <tomotree.Cell object at 0x729829f90080>,
        <tomotree.Cell object at 0x729829f900b0>,
        <tomotree.Cell object at 0x729829f900e0>,
        <tomotree.Cell object at 0x729829f90110>,
        <tomotree.Cell object at 0x729829f90140>,
        <tomotree.Cell object at 0x729829f90170>,
        <tomotree.Cell object at 0x729829f901a0>,
        <tomotree.Cell object at 0x729829f901d0>,
        <tomotree.Cell object at 0x729829f90200>,
        <tomotree.Cell object at 0x729829f90230>,
        <tomotree.Cell object at 0x729829f90b60>,
        <tomotree.Cell object at 0x729829f90b90>,
        <tomotree.Cell object at 0x729829f90bc0>,
        <tomotree.Cell object at 0x729829f90bf0>,
        <tomotree.Cell object at 0x729829f90c20>,
        <tomotree.Cell object at 0x729829f90c50>,
        <tomotree.Cell object at 0x729829f90c80>,
        <tomotree.Cell object at 0x729829f90cb0>,
        <tomotree.Cell object at 0x729829f90ce0>,
        <tomotree.Cell object at 0x729829f90d10>,
        <tomotree.Cell object at 0x729829f90d40>,
        <tomotree.Cell object at 0x729829f90d70>,
        <tomotree.Cell object at 0x729829f90da0>,
        <tomotree.Cell object at 0x729829f90dd0>,
        <tomotree.Cell object at 0x729829f91700>,
        <tomotree.Cell object at 0x729829f91730>,
        <tomotree.Cell object at 0x729829f91760>,
        <tomotree.Cell object at 0x729829f91790>,
        <tomotree.Cell object at 0x729829f917c0>,
        <tomotree.Cell object at 0x729829f917f0>,
        <tomotree.Cell object at 0x729829f91820>,
        <tomotree.Cell object at 0x729829f91850>,
        <tomotree.Cell object at 0x729829f91880>,
        <tomotree.Cell object at 0x729829f918b0>,
        <tomotree.Cell object at 0x729829f918e0>,
        <tomotree.Cell object at 0x729829f91910>,
        <tomotree.Cell object at 0x729829f91940>,
        <tomotree.Cell object at 0x729829f91970>,
        <tomotree.Cell object at 0x729829f919a0>,
        <tomotree.Cell object at 0x729829f922d0>,
        <tomotree.Cell object at 0x729829f92300>,
        <tomotree.Cell object at 0x729829f92330>,
        <tomotree.Cell object at 0x729829f92360>,
        <tomotree.Cell object at 0x729829f92390>,
        <tomotree.Cell object at 0x729829f923c0>,
        <tomotree.Cell object at 0x729829f923f0>,
        <tomotree.Cell object at 0x729829f92420>,
        <tomotree.Cell object at 0x729829f92450>,
        <tomotree.Cell object at 0x729829f92480>,
        <tomotree.Cell object at 0x729829f924b0>,
        <tomotree.Cell object at 0x729829f924e0>,
        <tomotree.Cell object at 0x729829f92510>,
        <tomotree.Cell object at 0x729829f92540>,
        <tomotree.Cell object at 0x729829f92ea0>,
        <tomotree.Cell object at 0x729829f92ed0>,
        <tomotree.Cell object at 0x729829f92f00>,
        <tomotree.Cell object at 0x729829f92f30>,
        <tomotree.Cell object at 0x729829f92f60>,
        <tomotree.Cell object at 0x729829f92f90>,
        <tomotree.Cell object at 0x729829f92fc0>,
        <tomotree.Cell object at 0x729829f92ff0>,
        <tomotree.Cell object at 0x729829f93020>,
        <tomotree.Cell object at 0x729829f93050>,
        <tomotree.Cell object at 0x729829f93080>,
        <tomotree.Cell object at 0x729829f930b0>,
        <tomotree.Cell object at 0x729829f930e0>,
        <tomotree.Cell object at 0x729829f93a40>,
        <tomotree.Cell object at 0x729829f93a70>,
        <tomotree.Cell object at 0x729829f93aa0>,
        <tomotree.Cell object at 0x729829f93ad0>,
        <tomotree.Cell object at 0x729829f93b00>,
        <tomotree.Cell object at 0x729829f93b30>,
        <tomotree.Cell object at 0x729829f93b60>,
        <tomotree.Cell object at 0x729829f93b90>,
        <tomotree.Cell object at 0x729829f93bc0>,
        <tomotree.Cell object at 0x729829f93bf0>,
        <tomotree.Cell object at 0x729829f93c20>,
        <tomotree.Cell object at 0x729829f93c50>,
        <tomotree.Cell object at 0x729829f93c80>,
        <tomotree.Cell object at 0x729829db8650>,
        <tomotree.Cell object at 0x729829db8680>,
        <tomotree.Cell object at 0x729829db86b0>,
        <tomotree.Cell object at 0x729829db86e0>,
        <tomotree.Cell object at 0x729829db8710>,
        <tomotree.Cell object at 0x729829db8740>,
        <tomotree.Cell object at 0x729829db8770>,
        <tomotree.Cell object at 0x729829db87a0>,
        <tomotree.Cell object at 0x729829db87d0>,
        <tomotree.Cell object at 0x729829db8800>,
        <tomotree.Cell object at 0x729829db8830>,
        <tomotree.Cell object at 0x729829db8860>,
        <tomotree.Cell object at 0x729829db9220>,
        <tomotree.Cell object at 0x729829db9250>,
        <tomotree.Cell object at 0x729829db9280>,
        <tomotree.Cell object at 0x729829db92b0>,
        <tomotree.Cell object at 0x729829db92e0>,
        <tomotree.Cell object at 0x729829db9310>,
        <tomotree.Cell object at 0x729829db9340>,
        <tomotree.Cell object at 0x729829db9370>,
        <tomotree.Cell object at 0x729829db93a0>,
        <tomotree.Cell object at 0x729829db93d0>,
        <tomotree.Cell object at 0x729829db9400>,
        <tomotree.Cell object at 0x729829db9df0>,
        <tomotree.Cell object at 0x729829db9e20>,
        <tomotree.Cell object at 0x729829db9e50>,
        <tomotree.Cell object at 0x729829db9e80>,
        <tomotree.Cell object at 0x729829db9eb0>,
        <tomotree.Cell object at 0x729829db9ee0>,
        <tomotree.Cell object at 0x729829db9f10>,
        <tomotree.Cell object at 0x729829db9f40>,
        <tomotree.Cell object at 0x729829db9f70>,
        <tomotree.Cell object at 0x729829db9fa0>,
        <tomotree.Cell object at 0x729829dba9c0>,
        <tomotree.Cell object at 0x729829dba9f0>,
        <tomotree.Cell object at 0x729829dbaa20>,
        <tomotree.Cell object at 0x729829dbaa50>,
        <tomotree.Cell object at 0x729829dbaa80>,
        <tomotree.Cell object at 0x729829dbaab0>,
        <tomotree.Cell object at 0x729829dbaae0>,
        <tomotree.Cell object at 0x729829dbab10>,
        <tomotree.Cell object at 0x729829dbab40>,
        <tomotree.Cell object at 0x729829dbb590>,
        <tomotree.Cell object at 0x729829dbb5c0>,
        <tomotree.Cell object at 0x729829dbb5f0>,
        <tomotree.Cell object at 0x729829dbb620>,
        <tomotree.Cell object at 0x729829dbb650>,
        <tomotree.Cell object at 0x729829dbb680>,
        <tomotree.Cell object at 0x729829dbb6b0>,
        <tomotree.Cell object at 0x729829dd81d0>,
        <tomotree.Cell object at 0x729829dd8200>,
        <tomotree.Cell object at 0x729829dd8230>,
        <tomotree.Cell object at 0x729829dd8260>], dtype=object),
 <tomotree.Ray at 0x72982a072f30>: array([<tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829eff830>,
        <tomotree.Cell object at 0x729829eff860>,
        <tomotree.Cell object at 0x729829eff890>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829f24440>,
        <tomotree.Cell object at 0x729829f24470>,
        <tomotree.Cell object at 0x729829f244a0>,
        <tomotree.Cell object at 0x729829f244d0>,
        <tomotree.Cell object at 0x729829f24500>,
        <tomotree.Cell object at 0x729829f24530>,
        <tomotree.Cell object at 0x729829f24560>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f25010>,
        <tomotree.Cell object at 0x729829f25040>,
        <tomotree.Cell object at 0x729829f25070>,
        <tomotree.Cell object at 0x729829f250a0>,
        <tomotree.Cell object at 0x729829f250d0>,
        <tomotree.Cell object at 0x729829f25100>,
        <tomotree.Cell object at 0x729829f25130>,
        <tomotree.Cell object at 0x729829f25160>,
        <tomotree.Cell object at 0x729829f25190>,
        <tomotree.Cell object at 0x729829f251c0>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25be0>,
        <tomotree.Cell object at 0x729829f25c10>,
        <tomotree.Cell object at 0x729829f25c40>,
        <tomotree.Cell object at 0x729829f25c70>,
        <tomotree.Cell object at 0x729829f25ca0>,
        <tomotree.Cell object at 0x729829f25cd0>,
        <tomotree.Cell object at 0x729829f25d00>,
        <tomotree.Cell object at 0x729829f25d30>,
        <tomotree.Cell object at 0x729829f25d60>,
        <tomotree.Cell object at 0x729829f25d90>,
        <tomotree.Cell object at 0x729829f25dc0>,
        <tomotree.Cell object at 0x729829f25df0>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f267b0>,
        <tomotree.Cell object at 0x729829f267e0>,
        <tomotree.Cell object at 0x729829f26810>,
        <tomotree.Cell object at 0x729829f26840>,
        <tomotree.Cell object at 0x729829f26870>,
        <tomotree.Cell object at 0x729829f268a0>,
        <tomotree.Cell object at 0x729829f268d0>,
        <tomotree.Cell object at 0x729829f26900>,
        <tomotree.Cell object at 0x729829f26930>,
        <tomotree.Cell object at 0x729829f26960>,
        <tomotree.Cell object at 0x729829f26990>,
        <tomotree.Cell object at 0x729829f269c0>,
        <tomotree.Cell object at 0x729829f269f0>,
        <tomotree.Cell object at 0x729829f26a20>,
        <tomotree.Cell object at 0x729829f26a50>,
        <tomotree.Cell object at 0x729829f26a80>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f273b0>,
        <tomotree.Cell object at 0x729829f273e0>,
        <tomotree.Cell object at 0x729829f27410>,
        <tomotree.Cell object at 0x729829f27440>,
        <tomotree.Cell object at 0x729829f27470>,
        <tomotree.Cell object at 0x729829f274a0>,
        <tomotree.Cell object at 0x729829f274d0>,
        <tomotree.Cell object at 0x729829f27500>,
        <tomotree.Cell object at 0x729829f27530>,
        <tomotree.Cell object at 0x729829f27560>,
        <tomotree.Cell object at 0x729829f27590>,
        <tomotree.Cell object at 0x729829f275c0>,
        <tomotree.Cell object at 0x729829f275f0>,
        <tomotree.Cell object at 0x729829f27620>,
        <tomotree.Cell object at 0x729829f27650>,
        <tomotree.Cell object at 0x729829f27680>,
        <tomotree.Cell object at 0x729829f276b0>,
        <tomotree.Cell object at 0x729829f276e0>,
        <tomotree.Cell object at 0x729829f27f80>,
        <tomotree.Cell object at 0x729829f27fb0>,
        <tomotree.Cell object at 0x729829f27fe0>,
        <tomotree.Cell object at 0x729829f48050>,
        <tomotree.Cell object at 0x729829f48080>,
        <tomotree.Cell object at 0x729829f480b0>,
        <tomotree.Cell object at 0x729829f480e0>,
        <tomotree.Cell object at 0x729829f48110>,
        <tomotree.Cell object at 0x729829f48140>,
        <tomotree.Cell object at 0x729829f48170>,
        <tomotree.Cell object at 0x729829f481a0>,
        <tomotree.Cell object at 0x729829f481d0>,
        <tomotree.Cell object at 0x729829f48200>,
        <tomotree.Cell object at 0x729829f48230>,
        <tomotree.Cell object at 0x729829f48260>,
        <tomotree.Cell object at 0x729829f48290>,
        <tomotree.Cell object at 0x729829f482c0>,
        <tomotree.Cell object at 0x729829f482f0>,
        <tomotree.Cell object at 0x729829f48b90>,
        <tomotree.Cell object at 0x729829f48bc0>,
        <tomotree.Cell object at 0x729829f48bf0>,
        <tomotree.Cell object at 0x729829f48c20>,
        <tomotree.Cell object at 0x729829f48c50>,
        <tomotree.Cell object at 0x729829f48c80>,
        <tomotree.Cell object at 0x729829f48cb0>,
        <tomotree.Cell object at 0x729829f48ce0>,
        <tomotree.Cell object at 0x729829f48d10>,
        <tomotree.Cell object at 0x729829f48d40>,
        <tomotree.Cell object at 0x729829f48d70>,
        <tomotree.Cell object at 0x729829f48da0>,
        <tomotree.Cell object at 0x729829f48dd0>,
        <tomotree.Cell object at 0x729829f48e00>,
        <tomotree.Cell object at 0x729829f48e30>,
        <tomotree.Cell object at 0x729829f48e60>,
        <tomotree.Cell object at 0x729829f48e90>,
        <tomotree.Cell object at 0x729829f48ec0>,
        <tomotree.Cell object at 0x729829f49760>,
        <tomotree.Cell object at 0x729829f49790>,
        <tomotree.Cell object at 0x729829f497c0>,
        <tomotree.Cell object at 0x729829f497f0>,
        <tomotree.Cell object at 0x729829f49820>,
        <tomotree.Cell object at 0x729829f49850>,
        <tomotree.Cell object at 0x729829f49880>,
        <tomotree.Cell object at 0x729829f498b0>,
        <tomotree.Cell object at 0x729829f498e0>,
        <tomotree.Cell object at 0x729829f49910>,
        <tomotree.Cell object at 0x729829f49940>,
        <tomotree.Cell object at 0x729829f49970>,
        <tomotree.Cell object at 0x729829f499a0>,
        <tomotree.Cell object at 0x729829f499d0>,
        <tomotree.Cell object at 0x729829f49a00>,
        <tomotree.Cell object at 0x729829f49a30>,
        <tomotree.Cell object at 0x729829f49a60>,
        <tomotree.Cell object at 0x729829f49a90>,
        <tomotree.Cell object at 0x729829f4a360>,
        <tomotree.Cell object at 0x729829f4a390>,
        <tomotree.Cell object at 0x729829f4a3c0>,
        <tomotree.Cell object at 0x729829f4a3f0>,
        <tomotree.Cell object at 0x729829f4a420>,
        <tomotree.Cell object at 0x729829f4a450>,
        <tomotree.Cell object at 0x729829f4a480>,
        <tomotree.Cell object at 0x729829f4a4b0>,
        <tomotree.Cell object at 0x729829f4a4e0>,
        <tomotree.Cell object at 0x729829f4a510>,
        <tomotree.Cell object at 0x729829f4a540>,
        <tomotree.Cell object at 0x729829f4a570>,
        <tomotree.Cell object at 0x729829f4a5a0>,
        <tomotree.Cell object at 0x729829f4a5d0>,
        <tomotree.Cell object at 0x729829f4a600>,
        <tomotree.Cell object at 0x729829f4a630>,
        <tomotree.Cell object at 0x729829f4a660>,
        <tomotree.Cell object at 0x729829f4a690>,
        <tomotree.Cell object at 0x729829f4af30>,
        <tomotree.Cell object at 0x729829f4af60>,
        <tomotree.Cell object at 0x729829f4af90>,
        <tomotree.Cell object at 0x729829f4afc0>,
        <tomotree.Cell object at 0x729829f4aff0>,
        <tomotree.Cell object at 0x729829f4b020>,
        <tomotree.Cell object at 0x729829f4b050>,
        <tomotree.Cell object at 0x729829f4b080>,
        <tomotree.Cell object at 0x729829f4b0b0>,
        <tomotree.Cell object at 0x729829f4b0e0>,
        <tomotree.Cell object at 0x729829f4b110>,
        <tomotree.Cell object at 0x729829f4b140>,
        <tomotree.Cell object at 0x729829f4b170>,
        <tomotree.Cell object at 0x729829f4b1a0>,
        <tomotree.Cell object at 0x729829f4b1d0>,
        <tomotree.Cell object at 0x729829f4b200>,
        <tomotree.Cell object at 0x729829f4b230>,
        <tomotree.Cell object at 0x729829f4b260>,
        <tomotree.Cell object at 0x729829f4bb30>,
        <tomotree.Cell object at 0x729829f4bb60>,
        <tomotree.Cell object at 0x729829f4bb90>,
        <tomotree.Cell object at 0x729829f4bbc0>,
        <tomotree.Cell object at 0x729829f4bbf0>,
        <tomotree.Cell object at 0x729829f4bc20>,
        <tomotree.Cell object at 0x729829f4bc50>,
        <tomotree.Cell object at 0x729829f4bc80>,
        <tomotree.Cell object at 0x729829f4bcb0>,
        <tomotree.Cell object at 0x729829f4bce0>,
        <tomotree.Cell object at 0x729829f4bd10>,
        <tomotree.Cell object at 0x729829f4bd40>,
        <tomotree.Cell object at 0x729829f4bd70>,
        <tomotree.Cell object at 0x729829f4bda0>,
        <tomotree.Cell object at 0x729829f4bdd0>,
        <tomotree.Cell object at 0x729829f4be00>,
        <tomotree.Cell object at 0x729829f4be30>,
        <tomotree.Cell object at 0x729829f68740>,
        <tomotree.Cell object at 0x729829f68770>,
        <tomotree.Cell object at 0x729829f687a0>,
        <tomotree.Cell object at 0x729829f687d0>,
        <tomotree.Cell object at 0x729829f68800>,
        <tomotree.Cell object at 0x729829f68830>,
        <tomotree.Cell object at 0x729829f68860>,
        <tomotree.Cell object at 0x729829f68890>,
        <tomotree.Cell object at 0x729829f688c0>,
        <tomotree.Cell object at 0x729829f688f0>,
        <tomotree.Cell object at 0x729829f68920>,
        <tomotree.Cell object at 0x729829f68950>,
        <tomotree.Cell object at 0x729829f68980>,
        <tomotree.Cell object at 0x729829f689b0>,
        <tomotree.Cell object at 0x729829f689e0>,
        <tomotree.Cell object at 0x729829f68a10>,
        <tomotree.Cell object at 0x729829f68a40>,
        <tomotree.Cell object at 0x729829f69340>,
        <tomotree.Cell object at 0x729829f69370>,
        <tomotree.Cell object at 0x729829f693a0>,
        <tomotree.Cell object at 0x729829f693d0>,
        <tomotree.Cell object at 0x729829f69400>,
        <tomotree.Cell object at 0x729829f69430>,
        <tomotree.Cell object at 0x729829f69460>,
        <tomotree.Cell object at 0x729829f69490>,
        <tomotree.Cell object at 0x729829f694c0>,
        <tomotree.Cell object at 0x729829f694f0>,
        <tomotree.Cell object at 0x729829f69520>,
        <tomotree.Cell object at 0x729829f69550>,
        <tomotree.Cell object at 0x729829f69580>,
        <tomotree.Cell object at 0x729829f695b0>,
        <tomotree.Cell object at 0x729829f695e0>,
        <tomotree.Cell object at 0x729829f69f10>,
        <tomotree.Cell object at 0x729829f69f40>,
        <tomotree.Cell object at 0x729829f69f70>,
        <tomotree.Cell object at 0x729829f69fa0>,
        <tomotree.Cell object at 0x729829f69fd0>,
        <tomotree.Cell object at 0x729829f6a000>,
        <tomotree.Cell object at 0x729829f6a030>,
        <tomotree.Cell object at 0x729829f6a060>,
        <tomotree.Cell object at 0x729829f6a090>,
        <tomotree.Cell object at 0x729829f6a0c0>,
        <tomotree.Cell object at 0x729829f6a0f0>,
        <tomotree.Cell object at 0x729829f6a120>,
        <tomotree.Cell object at 0x729829f6a150>,
        <tomotree.Cell object at 0x729829f6a180>,
        <tomotree.Cell object at 0x729829f6a1b0>,
        <tomotree.Cell object at 0x729829f6ab10>,
        <tomotree.Cell object at 0x729829f6ab40>,
        <tomotree.Cell object at 0x729829f6ab70>,
        <tomotree.Cell object at 0x729829f6aba0>,
        <tomotree.Cell object at 0x729829f6abd0>,
        <tomotree.Cell object at 0x729829f6ac00>,
        <tomotree.Cell object at 0x729829f6ac30>,
        <tomotree.Cell object at 0x729829f6ac60>,
        <tomotree.Cell object at 0x729829f6ac90>,
        <tomotree.Cell object at 0x729829f6acc0>,
        <tomotree.Cell object at 0x729829f6acf0>,
        <tomotree.Cell object at 0x729829f6ad20>,
        <tomotree.Cell object at 0x729829f6ad50>,
        <tomotree.Cell object at 0x729829f6ad80>,
        <tomotree.Cell object at 0x729829f6b710>,
        <tomotree.Cell object at 0x729829f6b740>,
        <tomotree.Cell object at 0x729829f6b770>,
        <tomotree.Cell object at 0x729829f6b7a0>,
        <tomotree.Cell object at 0x729829f6b7d0>,
        <tomotree.Cell object at 0x729829f6b800>,
        <tomotree.Cell object at 0x729829f6b830>,
        <tomotree.Cell object at 0x729829f6b860>,
        <tomotree.Cell object at 0x729829f6b890>,
        <tomotree.Cell object at 0x729829f6b8c0>,
        <tomotree.Cell object at 0x729829f6b8f0>,
        <tomotree.Cell object at 0x729829f6b920>,
        <tomotree.Cell object at 0x729829f90350>,
        <tomotree.Cell object at 0x729829f90380>,
        <tomotree.Cell object at 0x729829f903b0>,
        <tomotree.Cell object at 0x729829f903e0>,
        <tomotree.Cell object at 0x729829f90410>,
        <tomotree.Cell object at 0x729829f90440>,
        <tomotree.Cell object at 0x729829f90470>,
        <tomotree.Cell object at 0x729829f904a0>,
        <tomotree.Cell object at 0x729829f904d0>,
        <tomotree.Cell object at 0x729829f90500>,
        <tomotree.Cell object at 0x729829f90530>,
        <tomotree.Cell object at 0x729829f90f50>,
        <tomotree.Cell object at 0x729829f90f80>,
        <tomotree.Cell object at 0x729829f90fb0>,
        <tomotree.Cell object at 0x729829f90fe0>,
        <tomotree.Cell object at 0x729829f91010>,
        <tomotree.Cell object at 0x729829f91040>,
        <tomotree.Cell object at 0x729829f91070>,
        <tomotree.Cell object at 0x729829f910a0>,
        <tomotree.Cell object at 0x729829f91bb0>,
        <tomotree.Cell object at 0x729829f91be0>,
        <tomotree.Cell object at 0x729829f91c10>], dtype=object),
 <tomotree.Ray at 0x72982a072f90>: array([<tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>,
        <tomotree.Cell object at 0x729829f24b60>,
        <tomotree.Cell object at 0x729829f24b90>,
        <tomotree.Cell object at 0x729829f24bc0>,
        <tomotree.Cell object at 0x729829f24bf0>,
        <tomotree.Cell object at 0x729829f24c20>,
        <tomotree.Cell object at 0x729829f24c50>,
        <tomotree.Cell object at 0x729829f24c80>,
        <tomotree.Cell object at 0x729829f251f0>,
        <tomotree.Cell object at 0x729829f25220>,
        <tomotree.Cell object at 0x729829f25250>,
        <tomotree.Cell object at 0x729829f25280>,
        <tomotree.Cell object at 0x729829f252b0>,
        <tomotree.Cell object at 0x729829f252e0>,
        <tomotree.Cell object at 0x729829f25310>,
        <tomotree.Cell object at 0x729829f25340>,
        <tomotree.Cell object at 0x729829f25370>,
        <tomotree.Cell object at 0x729829f253a0>,
        <tomotree.Cell object at 0x729829f253d0>,
        <tomotree.Cell object at 0x729829f25400>,
        <tomotree.Cell object at 0x729829f25430>,
        <tomotree.Cell object at 0x729829f25460>,
        <tomotree.Cell object at 0x729829f25490>,
        <tomotree.Cell object at 0x729829f254c0>,
        <tomotree.Cell object at 0x729829f254f0>,
        <tomotree.Cell object at 0x729829f25520>,
        <tomotree.Cell object at 0x729829f25550>,
        <tomotree.Cell object at 0x729829f25580>,
        <tomotree.Cell object at 0x729829f255b0>,
        <tomotree.Cell object at 0x729829f255e0>,
        <tomotree.Cell object at 0x729829f25610>,
        <tomotree.Cell object at 0x729829f25640>,
        <tomotree.Cell object at 0x729829f25670>,
        <tomotree.Cell object at 0x729829f256a0>,
        <tomotree.Cell object at 0x729829f256d0>,
        <tomotree.Cell object at 0x729829f25700>,
        <tomotree.Cell object at 0x729829f25730>,
        <tomotree.Cell object at 0x729829f25760>,
        <tomotree.Cell object at 0x729829f25790>,
        <tomotree.Cell object at 0x729829f257c0>,
        <tomotree.Cell object at 0x729829f257f0>,
        <tomotree.Cell object at 0x729829f25820>,
        <tomotree.Cell object at 0x729829f25850>,
        <tomotree.Cell object at 0x729829f25880>,
        <tomotree.Cell object at 0x729829f25e20>,
        <tomotree.Cell object at 0x729829f25e50>,
        <tomotree.Cell object at 0x729829f25e80>,
        <tomotree.Cell object at 0x729829f25eb0>,
        <tomotree.Cell object at 0x729829f25ee0>,
        <tomotree.Cell object at 0x729829f25f10>,
        <tomotree.Cell object at 0x729829f25f40>,
        <tomotree.Cell object at 0x729829f25f70>,
        <tomotree.Cell object at 0x729829f25fa0>,
        <tomotree.Cell object at 0x729829f25fd0>,
        <tomotree.Cell object at 0x729829f26000>,
        <tomotree.Cell object at 0x729829f26030>,
        <tomotree.Cell object at 0x729829f26060>,
        <tomotree.Cell object at 0x729829f26090>,
        <tomotree.Cell object at 0x729829f260c0>,
        <tomotree.Cell object at 0x729829f260f0>,
        <tomotree.Cell object at 0x729829f26120>,
        <tomotree.Cell object at 0x729829f26150>,
        <tomotree.Cell object at 0x729829f26180>,
        <tomotree.Cell object at 0x729829f261b0>,
        <tomotree.Cell object at 0x729829f261e0>,
        <tomotree.Cell object at 0x729829f26210>,
        <tomotree.Cell object at 0x729829f26240>,
        <tomotree.Cell object at 0x729829f26270>,
        <tomotree.Cell object at 0x729829f262a0>,
        <tomotree.Cell object at 0x729829f262d0>,
        <tomotree.Cell object at 0x729829f26300>,
        <tomotree.Cell object at 0x729829f26330>,
        <tomotree.Cell object at 0x729829f26360>,
        <tomotree.Cell object at 0x729829f26390>,
        <tomotree.Cell object at 0x729829f263c0>,
        <tomotree.Cell object at 0x729829f263f0>,
        <tomotree.Cell object at 0x729829f26420>,
        <tomotree.Cell object at 0x729829f26450>,
        <tomotree.Cell object at 0x729829f26ab0>,
        <tomotree.Cell object at 0x729829f26ae0>,
        <tomotree.Cell object at 0x729829f26b10>,
        <tomotree.Cell object at 0x729829f26b40>,
        <tomotree.Cell object at 0x729829f26b70>,
        <tomotree.Cell object at 0x729829f26ba0>,
        <tomotree.Cell object at 0x729829f26bd0>,
        <tomotree.Cell object at 0x729829f26c00>,
        <tomotree.Cell object at 0x729829f26c30>,
        <tomotree.Cell object at 0x729829f26c60>,
        <tomotree.Cell object at 0x729829f26c90>,
        <tomotree.Cell object at 0x729829f26cc0>,
        <tomotree.Cell object at 0x729829f26cf0>,
        <tomotree.Cell object at 0x729829f26d20>,
        <tomotree.Cell object at 0x729829f26d50>,
        <tomotree.Cell object at 0x729829f26d80>,
        <tomotree.Cell object at 0x729829f26db0>,
        <tomotree.Cell object at 0x729829f26de0>,
        <tomotree.Cell object at 0x729829f26e10>,
        <tomotree.Cell object at 0x729829f26e40>,
        <tomotree.Cell object at 0x729829f26e70>,
        <tomotree.Cell object at 0x729829f26ea0>,
        <tomotree.Cell object at 0x729829f26ed0>,
        <tomotree.Cell object at 0x729829f26f00>,
        <tomotree.Cell object at 0x729829f26f30>,
        <tomotree.Cell object at 0x729829f26f60>,
        <tomotree.Cell object at 0x729829f26f90>,
        <tomotree.Cell object at 0x729829f26fc0>,
        <tomotree.Cell object at 0x729829f26ff0>,
        <tomotree.Cell object at 0x729829f27020>,
        <tomotree.Cell object at 0x729829f27740>,
        <tomotree.Cell object at 0x729829f27770>,
        <tomotree.Cell object at 0x729829f277a0>,
        <tomotree.Cell object at 0x729829f277d0>,
        <tomotree.Cell object at 0x729829f27800>,
        <tomotree.Cell object at 0x729829f27830>,
        <tomotree.Cell object at 0x729829f27860>,
        <tomotree.Cell object at 0x729829f27890>,
        <tomotree.Cell object at 0x729829f278c0>,
        <tomotree.Cell object at 0x729829f278f0>,
        <tomotree.Cell object at 0x729829f27920>,
        <tomotree.Cell object at 0x729829f27950>,
        <tomotree.Cell object at 0x729829f27980>,
        <tomotree.Cell object at 0x729829f279b0>,
        <tomotree.Cell object at 0x729829f279e0>,
        <tomotree.Cell object at 0x729829f27a10>,
        <tomotree.Cell object at 0x729829f27a40>,
        <tomotree.Cell object at 0x729829f27a70>,
        <tomotree.Cell object at 0x729829f27aa0>,
        <tomotree.Cell object at 0x729829f27ad0>,
        <tomotree.Cell object at 0x729829f27b00>,
        <tomotree.Cell object at 0x729829f27b30>,
        <tomotree.Cell object at 0x729829f27b60>,
        <tomotree.Cell object at 0x729829f27b90>,
        <tomotree.Cell object at 0x729829f48440>,
        <tomotree.Cell object at 0x729829f48470>,
        <tomotree.Cell object at 0x729829f484a0>,
        <tomotree.Cell object at 0x729829f484d0>,
        <tomotree.Cell object at 0x729829f48500>,
        <tomotree.Cell object at 0x729829f48530>,
        <tomotree.Cell object at 0x729829f48560>,
        <tomotree.Cell object at 0x729829f48590>,
        <tomotree.Cell object at 0x729829f485c0>,
        <tomotree.Cell object at 0x729829f485f0>,
        <tomotree.Cell object at 0x729829f48620>,
        <tomotree.Cell object at 0x729829f48650>,
        <tomotree.Cell object at 0x729829f48680>,
        <tomotree.Cell object at 0x729829f486b0>,
        <tomotree.Cell object at 0x729829f486e0>,
        <tomotree.Cell object at 0x729829f48710>,
        <tomotree.Cell object at 0x729829f48740>], dtype=object),
 <tomotree.Ray at 0x72982a072ff0>: array([<tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x729829eddc10>,
        <tomotree.Cell object at 0x729829eddc40>,
        <tomotree.Cell object at 0x729829eddc70>,
        <tomotree.Cell object at 0x729829eddca0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede450>,
        <tomotree.Cell object at 0x729829ede480>,
        <tomotree.Cell object at 0x729829ede4b0>,
        <tomotree.Cell object at 0x729829ede4e0>,
        <tomotree.Cell object at 0x729829ede510>,
        <tomotree.Cell object at 0x729829ede540>,
        <tomotree.Cell object at 0x729829ede570>,
        <tomotree.Cell object at 0x729829ede5a0>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edef90>,
        <tomotree.Cell object at 0x729829edefc0>,
        <tomotree.Cell object at 0x729829edeff0>,
        <tomotree.Cell object at 0x729829edf020>,
        <tomotree.Cell object at 0x729829edf050>,
        <tomotree.Cell object at 0x729829edf080>,
        <tomotree.Cell object at 0x729829edf0b0>,
        <tomotree.Cell object at 0x729829edf0e0>,
        <tomotree.Cell object at 0x729829edf110>,
        <tomotree.Cell object at 0x729829edf140>,
        <tomotree.Cell object at 0x729829edf170>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfaa0>,
        <tomotree.Cell object at 0x729829edfad0>,
        <tomotree.Cell object at 0x729829edfb00>,
        <tomotree.Cell object at 0x729829edfb30>,
        <tomotree.Cell object at 0x729829edfb60>,
        <tomotree.Cell object at 0x729829edfb90>,
        <tomotree.Cell object at 0x729829edfbc0>,
        <tomotree.Cell object at 0x729829edfbf0>,
        <tomotree.Cell object at 0x729829edfc20>,
        <tomotree.Cell object at 0x729829edfc50>,
        <tomotree.Cell object at 0x729829edfc80>,
        <tomotree.Cell object at 0x729829edfcb0>,
        <tomotree.Cell object at 0x729829edfce0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc5c0>,
        <tomotree.Cell object at 0x729829efc5f0>,
        <tomotree.Cell object at 0x729829efc620>,
        <tomotree.Cell object at 0x729829efc650>,
        <tomotree.Cell object at 0x729829efc680>,
        <tomotree.Cell object at 0x729829efc6b0>,
        <tomotree.Cell object at 0x729829efc6e0>,
        <tomotree.Cell object at 0x729829efc710>,
        <tomotree.Cell object at 0x729829efc740>,
        <tomotree.Cell object at 0x729829efc770>,
        <tomotree.Cell object at 0x729829efc7a0>,
        <tomotree.Cell object at 0x729829efc7d0>,
        <tomotree.Cell object at 0x729829efc800>,
        <tomotree.Cell object at 0x729829efc830>,
        <tomotree.Cell object at 0x729829efc860>,
        <tomotree.Cell object at 0x729829efc890>,
        <tomotree.Cell object at 0x729829efc8c0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd0d0>,
        <tomotree.Cell object at 0x729829efd100>,
        <tomotree.Cell object at 0x729829efd130>,
        <tomotree.Cell object at 0x729829efd160>,
        <tomotree.Cell object at 0x729829efd190>,
        <tomotree.Cell object at 0x729829efd1c0>,
        <tomotree.Cell object at 0x729829efd1f0>,
        <tomotree.Cell object at 0x729829efd220>,
        <tomotree.Cell object at 0x729829efd250>,
        <tomotree.Cell object at 0x729829efd280>,
        <tomotree.Cell object at 0x729829efd2b0>,
        <tomotree.Cell object at 0x729829efd2e0>,
        <tomotree.Cell object at 0x729829efd310>,
        <tomotree.Cell object at 0x729829efd340>,
        <tomotree.Cell object at 0x729829efd370>,
        <tomotree.Cell object at 0x729829efd3a0>,
        <tomotree.Cell object at 0x729829efd3d0>,
        <tomotree.Cell object at 0x729829efd400>,
        <tomotree.Cell object at 0x729829efd430>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efdbb0>,
        <tomotree.Cell object at 0x729829efdbe0>,
        <tomotree.Cell object at 0x729829efdc10>,
        <tomotree.Cell object at 0x729829efdc40>,
        <tomotree.Cell object at 0x729829efdc70>,
        <tomotree.Cell object at 0x729829efdca0>,
        <tomotree.Cell object at 0x729829efdcd0>,
        <tomotree.Cell object at 0x729829efdd00>,
        <tomotree.Cell object at 0x729829efdd30>,
        <tomotree.Cell object at 0x729829efdd60>,
        <tomotree.Cell object at 0x729829efdd90>,
        <tomotree.Cell object at 0x729829efddc0>,
        <tomotree.Cell object at 0x729829efddf0>,
        <tomotree.Cell object at 0x729829efde20>,
        <tomotree.Cell object at 0x729829efde50>,
        <tomotree.Cell object at 0x729829efde80>,
        <tomotree.Cell object at 0x729829efdeb0>,
        <tomotree.Cell object at 0x729829efdee0>,
        <tomotree.Cell object at 0x729829efdf10>,
        <tomotree.Cell object at 0x729829efdf40>,
        <tomotree.Cell object at 0x729829efdf70>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efe660>,
        <tomotree.Cell object at 0x729829efe690>,
        <tomotree.Cell object at 0x729829efe6c0>,
        <tomotree.Cell object at 0x729829efe6f0>,
        <tomotree.Cell object at 0x729829efe720>,
        <tomotree.Cell object at 0x729829efe750>,
        <tomotree.Cell object at 0x729829efe780>,
        <tomotree.Cell object at 0x729829efe7b0>,
        <tomotree.Cell object at 0x729829efe7e0>,
        <tomotree.Cell object at 0x729829efe810>,
        <tomotree.Cell object at 0x729829efe840>,
        <tomotree.Cell object at 0x729829efe870>,
        <tomotree.Cell object at 0x729829efe8a0>,
        <tomotree.Cell object at 0x729829efe8d0>,
        <tomotree.Cell object at 0x729829efe900>,
        <tomotree.Cell object at 0x729829efe930>,
        <tomotree.Cell object at 0x729829efe960>,
        <tomotree.Cell object at 0x729829efe990>,
        <tomotree.Cell object at 0x729829efe9c0>,
        <tomotree.Cell object at 0x729829efe9f0>,
        <tomotree.Cell object at 0x729829efea20>,
        <tomotree.Cell object at 0x729829efea50>,
        <tomotree.Cell object at 0x729829efea80>,
        <tomotree.Cell object at 0x729829efeab0>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff110>,
        <tomotree.Cell object at 0x729829eff140>,
        <tomotree.Cell object at 0x729829eff170>,
        <tomotree.Cell object at 0x729829eff1a0>,
        <tomotree.Cell object at 0x729829eff1d0>,
        <tomotree.Cell object at 0x729829eff200>,
        <tomotree.Cell object at 0x729829eff230>,
        <tomotree.Cell object at 0x729829eff260>,
        <tomotree.Cell object at 0x729829eff290>,
        <tomotree.Cell object at 0x729829eff2c0>,
        <tomotree.Cell object at 0x729829eff2f0>,
        <tomotree.Cell object at 0x729829eff320>,
        <tomotree.Cell object at 0x729829eff350>,
        <tomotree.Cell object at 0x729829eff380>,
        <tomotree.Cell object at 0x729829eff3b0>,
        <tomotree.Cell object at 0x729829eff3e0>,
        <tomotree.Cell object at 0x729829eff410>,
        <tomotree.Cell object at 0x729829eff440>,
        <tomotree.Cell object at 0x729829eff470>,
        <tomotree.Cell object at 0x729829eff4a0>,
        <tomotree.Cell object at 0x729829eff4d0>,
        <tomotree.Cell object at 0x729829eff500>,
        <tomotree.Cell object at 0x729829eff530>,
        <tomotree.Cell object at 0x729829eff560>,
        <tomotree.Cell object at 0x729829eff590>,
        <tomotree.Cell object at 0x729829eff5c0>,
        <tomotree.Cell object at 0x729829eff8c0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>,
        <tomotree.Cell object at 0x729829effb00>,
        <tomotree.Cell object at 0x729829effb30>,
        <tomotree.Cell object at 0x729829effb60>,
        <tomotree.Cell object at 0x729829effb90>,
        <tomotree.Cell object at 0x729829effbc0>,
        <tomotree.Cell object at 0x729829effbf0>,
        <tomotree.Cell object at 0x729829effc20>,
        <tomotree.Cell object at 0x729829effc50>,
        <tomotree.Cell object at 0x729829effc80>,
        <tomotree.Cell object at 0x729829effcb0>,
        <tomotree.Cell object at 0x729829effce0>,
        <tomotree.Cell object at 0x729829effd10>,
        <tomotree.Cell object at 0x729829effd40>,
        <tomotree.Cell object at 0x729829effd70>,
        <tomotree.Cell object at 0x729829effda0>,
        <tomotree.Cell object at 0x729829effdd0>,
        <tomotree.Cell object at 0x729829effe00>,
        <tomotree.Cell object at 0x729829effe30>,
        <tomotree.Cell object at 0x729829effe60>,
        <tomotree.Cell object at 0x729829effe90>,
        <tomotree.Cell object at 0x729829effec0>,
        <tomotree.Cell object at 0x729829effef0>,
        <tomotree.Cell object at 0x729829efff20>,
        <tomotree.Cell object at 0x729829efff50>,
        <tomotree.Cell object at 0x729829efff80>,
        <tomotree.Cell object at 0x729829efffb0>,
        <tomotree.Cell object at 0x729829efffe0>,
        <tomotree.Cell object at 0x729829f24050>,
        <tomotree.Cell object at 0x729829f24080>,
        <tomotree.Cell object at 0x729829f240b0>,
        <tomotree.Cell object at 0x729829f24590>,
        <tomotree.Cell object at 0x729829f245c0>,
        <tomotree.Cell object at 0x729829f245f0>,
        <tomotree.Cell object at 0x729829f24620>,
        <tomotree.Cell object at 0x729829f24650>,
        <tomotree.Cell object at 0x729829f24680>,
        <tomotree.Cell object at 0x729829f246b0>,
        <tomotree.Cell object at 0x729829f246e0>,
        <tomotree.Cell object at 0x729829f24710>,
        <tomotree.Cell object at 0x729829f24740>,
        <tomotree.Cell object at 0x729829f24770>,
        <tomotree.Cell object at 0x729829f247a0>,
        <tomotree.Cell object at 0x729829f247d0>,
        <tomotree.Cell object at 0x729829f24800>,
        <tomotree.Cell object at 0x729829f24830>,
        <tomotree.Cell object at 0x729829f24860>,
        <tomotree.Cell object at 0x729829f24890>,
        <tomotree.Cell object at 0x729829f248c0>,
        <tomotree.Cell object at 0x729829f248f0>,
        <tomotree.Cell object at 0x729829f24920>,
        <tomotree.Cell object at 0x729829f24950>,
        <tomotree.Cell object at 0x729829f24980>,
        <tomotree.Cell object at 0x729829f249b0>,
        <tomotree.Cell object at 0x729829f249e0>,
        <tomotree.Cell object at 0x729829f24a10>,
        <tomotree.Cell object at 0x729829f24a40>,
        <tomotree.Cell object at 0x729829f24a70>,
        <tomotree.Cell object at 0x729829f24aa0>,
        <tomotree.Cell object at 0x729829f24ad0>,
        <tomotree.Cell object at 0x729829f24b00>,
        <tomotree.Cell object at 0x729829f24b30>], dtype=object),
 <tomotree.Ray at 0x72982a073050>: array([<tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08dc70>,
        <tomotree.Cell object at 0x72982a08dca0>,
        <tomotree.Cell object at 0x72982a08dcd0>,
        <tomotree.Cell object at 0x72982a08dd00>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08e7e0>,
        <tomotree.Cell object at 0x72982a08e810>,
        <tomotree.Cell object at 0x72982a08e840>,
        <tomotree.Cell object at 0x72982a08e870>,
        <tomotree.Cell object at 0x72982a08e8a0>,
        <tomotree.Cell object at 0x72982a08e8d0>,
        <tomotree.Cell object at 0x72982a08e900>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f350>,
        <tomotree.Cell object at 0x72982a08f380>,
        <tomotree.Cell object at 0x72982a08f3b0>,
        <tomotree.Cell object at 0x72982a08f3e0>,
        <tomotree.Cell object at 0x72982a08f410>,
        <tomotree.Cell object at 0x72982a08f440>,
        <tomotree.Cell object at 0x72982a08f470>,
        <tomotree.Cell object at 0x72982a08f4a0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x72982a08fec0>,
        <tomotree.Cell object at 0x72982a08fef0>,
        <tomotree.Cell object at 0x72982a08ff20>,
        <tomotree.Cell object at 0x72982a08ff50>,
        <tomotree.Cell object at 0x72982a08ff80>,
        <tomotree.Cell object at 0x72982a08ffb0>,
        <tomotree.Cell object at 0x72982a08ffe0>,
        <tomotree.Cell object at 0x729829eb8050>,
        <tomotree.Cell object at 0x729829eb8080>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8a40>,
        <tomotree.Cell object at 0x729829eb8a70>,
        <tomotree.Cell object at 0x729829eb8aa0>,
        <tomotree.Cell object at 0x729829eb8ad0>,
        <tomotree.Cell object at 0x729829eb8b00>,
        <tomotree.Cell object at 0x729829eb8b30>,
        <tomotree.Cell object at 0x729829eb8b60>,
        <tomotree.Cell object at 0x729829eb8b90>,
        <tomotree.Cell object at 0x729829eb8bc0>,
        <tomotree.Cell object at 0x729829eb8bf0>,
        <tomotree.Cell object at 0x729829eb8c20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb95b0>,
        <tomotree.Cell object at 0x729829eb95e0>,
        <tomotree.Cell object at 0x729829eb9610>,
        <tomotree.Cell object at 0x729829eb9640>,
        <tomotree.Cell object at 0x729829eb9670>,
        <tomotree.Cell object at 0x729829eb96a0>,
        <tomotree.Cell object at 0x729829eb96d0>,
        <tomotree.Cell object at 0x729829eb9700>,
        <tomotree.Cell object at 0x729829eb9730>,
        <tomotree.Cell object at 0x729829eb9760>,
        <tomotree.Cell object at 0x729829eb9790>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba0f0>,
        <tomotree.Cell object at 0x729829eba120>,
        <tomotree.Cell object at 0x729829eba150>,
        <tomotree.Cell object at 0x729829eba180>,
        <tomotree.Cell object at 0x729829eba1b0>,
        <tomotree.Cell object at 0x729829eba1e0>,
        <tomotree.Cell object at 0x729829eba210>,
        <tomotree.Cell object at 0x729829eba240>,
        <tomotree.Cell object at 0x729829eba270>,
        <tomotree.Cell object at 0x729829eba2a0>,
        <tomotree.Cell object at 0x729829eba2d0>,
        <tomotree.Cell object at 0x729829eba300>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebac30>,
        <tomotree.Cell object at 0x729829ebac60>,
        <tomotree.Cell object at 0x729829ebac90>,
        <tomotree.Cell object at 0x729829ebacc0>,
        <tomotree.Cell object at 0x729829ebacf0>,
        <tomotree.Cell object at 0x729829ebad20>,
        <tomotree.Cell object at 0x729829ebad50>,
        <tomotree.Cell object at 0x729829ebad80>,
        <tomotree.Cell object at 0x729829ebadb0>,
        <tomotree.Cell object at 0x729829ebade0>,
        <tomotree.Cell object at 0x729829ebae10>,
        <tomotree.Cell object at 0x729829ebae40>,
        <tomotree.Cell object at 0x729829ebae70>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebb770>,
        <tomotree.Cell object at 0x729829ebb7a0>,
        <tomotree.Cell object at 0x729829ebb7d0>,
        <tomotree.Cell object at 0x729829ebb800>,
        <tomotree.Cell object at 0x729829ebb830>,
        <tomotree.Cell object at 0x729829ebb860>,
        <tomotree.Cell object at 0x729829ebb890>,
        <tomotree.Cell object at 0x729829ebb8c0>,
        <tomotree.Cell object at 0x729829ebb8f0>,
        <tomotree.Cell object at 0x729829ebb920>,
        <tomotree.Cell object at 0x729829ebb950>,
        <tomotree.Cell object at 0x729829ebb980>,
        <tomotree.Cell object at 0x729829ebb9b0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc2f0>,
        <tomotree.Cell object at 0x729829edc320>,
        <tomotree.Cell object at 0x729829edc350>,
        <tomotree.Cell object at 0x729829edc380>,
        <tomotree.Cell object at 0x729829edc3b0>,
        <tomotree.Cell object at 0x729829edc3e0>,
        <tomotree.Cell object at 0x729829edc410>,
        <tomotree.Cell object at 0x729829edc440>,
        <tomotree.Cell object at 0x729829edc470>,
        <tomotree.Cell object at 0x729829edc4a0>,
        <tomotree.Cell object at 0x729829edc4d0>,
        <tomotree.Cell object at 0x729829edc500>,
        <tomotree.Cell object at 0x729829edc530>,
        <tomotree.Cell object at 0x729829edc560>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edce30>,
        <tomotree.Cell object at 0x729829edce60>,
        <tomotree.Cell object at 0x729829edce90>,
        <tomotree.Cell object at 0x729829edcec0>,
        <tomotree.Cell object at 0x729829edcef0>,
        <tomotree.Cell object at 0x729829edcf20>,
        <tomotree.Cell object at 0x729829edcf50>,
        <tomotree.Cell object at 0x729829edcf80>,
        <tomotree.Cell object at 0x729829edcfb0>,
        <tomotree.Cell object at 0x729829edcfe0>,
        <tomotree.Cell object at 0x729829edd010>,
        <tomotree.Cell object at 0x729829edd040>,
        <tomotree.Cell object at 0x729829edd070>,
        <tomotree.Cell object at 0x729829edd0a0>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x729829edd970>,
        <tomotree.Cell object at 0x729829edd9a0>,
        <tomotree.Cell object at 0x729829edd9d0>,
        <tomotree.Cell object at 0x729829edda00>,
        <tomotree.Cell object at 0x729829edda30>,
        <tomotree.Cell object at 0x729829edda60>,
        <tomotree.Cell object at 0x729829edda90>,
        <tomotree.Cell object at 0x729829eddac0>,
        <tomotree.Cell object at 0x729829eddaf0>,
        <tomotree.Cell object at 0x729829eddb20>,
        <tomotree.Cell object at 0x729829eddb50>,
        <tomotree.Cell object at 0x729829eddb80>,
        <tomotree.Cell object at 0x729829eddbb0>,
        <tomotree.Cell object at 0x729829eddbe0>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede1b0>,
        <tomotree.Cell object at 0x729829ede1e0>,
        <tomotree.Cell object at 0x729829ede210>,
        <tomotree.Cell object at 0x729829ede240>,
        <tomotree.Cell object at 0x729829ede270>,
        <tomotree.Cell object at 0x729829ede2a0>,
        <tomotree.Cell object at 0x729829ede2d0>,
        <tomotree.Cell object at 0x729829ede300>,
        <tomotree.Cell object at 0x729829ede330>,
        <tomotree.Cell object at 0x729829ede360>,
        <tomotree.Cell object at 0x729829ede390>,
        <tomotree.Cell object at 0x729829ede3c0>,
        <tomotree.Cell object at 0x729829ede3f0>,
        <tomotree.Cell object at 0x729829ede420>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edecf0>,
        <tomotree.Cell object at 0x729829eded20>,
        <tomotree.Cell object at 0x729829eded50>,
        <tomotree.Cell object at 0x729829eded80>,
        <tomotree.Cell object at 0x729829ededb0>,
        <tomotree.Cell object at 0x729829edede0>,
        <tomotree.Cell object at 0x729829edee10>,
        <tomotree.Cell object at 0x729829edee40>,
        <tomotree.Cell object at 0x729829edee70>,
        <tomotree.Cell object at 0x729829edeea0>,
        <tomotree.Cell object at 0x729829edeed0>,
        <tomotree.Cell object at 0x729829edef00>,
        <tomotree.Cell object at 0x729829edef30>,
        <tomotree.Cell object at 0x729829edef60>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edf800>,
        <tomotree.Cell object at 0x729829edf830>,
        <tomotree.Cell object at 0x729829edf860>,
        <tomotree.Cell object at 0x729829edf890>,
        <tomotree.Cell object at 0x729829edf8c0>,
        <tomotree.Cell object at 0x729829edf8f0>,
        <tomotree.Cell object at 0x729829edf920>,
        <tomotree.Cell object at 0x729829edf950>,
        <tomotree.Cell object at 0x729829edf980>,
        <tomotree.Cell object at 0x729829edf9b0>,
        <tomotree.Cell object at 0x729829edf9e0>,
        <tomotree.Cell object at 0x729829edfa10>,
        <tomotree.Cell object at 0x729829edfa40>,
        <tomotree.Cell object at 0x729829edfa70>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc350>,
        <tomotree.Cell object at 0x729829efc380>,
        <tomotree.Cell object at 0x729829efc3b0>,
        <tomotree.Cell object at 0x729829efc3e0>,
        <tomotree.Cell object at 0x729829efc410>,
        <tomotree.Cell object at 0x729829efc440>,
        <tomotree.Cell object at 0x729829efc470>,
        <tomotree.Cell object at 0x729829efc4a0>,
        <tomotree.Cell object at 0x729829efc4d0>,
        <tomotree.Cell object at 0x729829efc500>,
        <tomotree.Cell object at 0x729829efc530>,
        <tomotree.Cell object at 0x729829efc560>,
        <tomotree.Cell object at 0x729829efc590>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efce60>,
        <tomotree.Cell object at 0x729829efce90>,
        <tomotree.Cell object at 0x729829efcec0>,
        <tomotree.Cell object at 0x729829efcef0>,
        <tomotree.Cell object at 0x729829efcf20>,
        <tomotree.Cell object at 0x729829efcf50>,
        <tomotree.Cell object at 0x729829efcf80>,
        <tomotree.Cell object at 0x729829efcfb0>,
        <tomotree.Cell object at 0x729829efcfe0>,
        <tomotree.Cell object at 0x729829efd010>,
        <tomotree.Cell object at 0x729829efd040>,
        <tomotree.Cell object at 0x729829efd070>,
        <tomotree.Cell object at 0x729829efd0a0>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efd940>,
        <tomotree.Cell object at 0x729829efd970>,
        <tomotree.Cell object at 0x729829efd9a0>,
        <tomotree.Cell object at 0x729829efd9d0>,
        <tomotree.Cell object at 0x729829efda00>,
        <tomotree.Cell object at 0x729829efda30>,
        <tomotree.Cell object at 0x729829efda60>,
        <tomotree.Cell object at 0x729829efda90>,
        <tomotree.Cell object at 0x729829efdac0>,
        <tomotree.Cell object at 0x729829efdaf0>,
        <tomotree.Cell object at 0x729829efdb20>,
        <tomotree.Cell object at 0x729829efdb50>,
        <tomotree.Cell object at 0x729829efdb80>,
        <tomotree.Cell object at 0x729829efe090>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efe420>,
        <tomotree.Cell object at 0x729829efe450>,
        <tomotree.Cell object at 0x729829efe480>,
        <tomotree.Cell object at 0x729829efe4b0>,
        <tomotree.Cell object at 0x729829efe4e0>,
        <tomotree.Cell object at 0x729829efe510>,
        <tomotree.Cell object at 0x729829efe540>,
        <tomotree.Cell object at 0x729829efe570>,
        <tomotree.Cell object at 0x729829efe5a0>,
        <tomotree.Cell object at 0x729829efe5d0>,
        <tomotree.Cell object at 0x729829efe600>,
        <tomotree.Cell object at 0x729829efe630>,
        <tomotree.Cell object at 0x729829efec90>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>,
        <tomotree.Cell object at 0x729829efeea0>,
        <tomotree.Cell object at 0x729829efeed0>,
        <tomotree.Cell object at 0x729829efef00>,
        <tomotree.Cell object at 0x729829efef30>,
        <tomotree.Cell object at 0x729829efef60>,
        <tomotree.Cell object at 0x729829efef90>,
        <tomotree.Cell object at 0x729829efefc0>,
        <tomotree.Cell object at 0x729829efeff0>,
        <tomotree.Cell object at 0x729829eff020>,
        <tomotree.Cell object at 0x729829eff050>,
        <tomotree.Cell object at 0x729829eff080>,
        <tomotree.Cell object at 0x729829eff0b0>,
        <tomotree.Cell object at 0x729829eff0e0>,
        <tomotree.Cell object at 0x729829eff8f0>,
        <tomotree.Cell object at 0x729829eff920>,
        <tomotree.Cell object at 0x729829eff950>,
        <tomotree.Cell object at 0x729829eff980>,
        <tomotree.Cell object at 0x729829eff9b0>,
        <tomotree.Cell object at 0x729829eff9e0>,
        <tomotree.Cell object at 0x729829effa10>,
        <tomotree.Cell object at 0x729829effa40>,
        <tomotree.Cell object at 0x729829effa70>,
        <tomotree.Cell object at 0x729829effaa0>,
        <tomotree.Cell object at 0x729829effad0>], dtype=object),
 <tomotree.Ray at 0x72982a0730b0>: array([<tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a0737a0>,
        <tomotree.Cell object at 0x72982a0737d0>,
        <tomotree.Cell object at 0x72982a073800>,
        <tomotree.Cell object at 0x72982a073830>,
        <tomotree.Cell object at 0x72982a073860>,
        <tomotree.Cell object at 0x72982a073890>,
        <tomotree.Cell object at 0x72982a0738c0>,
        <tomotree.Cell object at 0x72982a0738f0>,
        <tomotree.Cell object at 0x72982a073920>,
        <tomotree.Cell object at 0x72982a073950>,
        <tomotree.Cell object at 0x72982a073980>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c380>,
        <tomotree.Cell object at 0x72982a08c3b0>,
        <tomotree.Cell object at 0x72982a08c3e0>,
        <tomotree.Cell object at 0x72982a08c410>,
        <tomotree.Cell object at 0x72982a08c440>,
        <tomotree.Cell object at 0x72982a08c470>,
        <tomotree.Cell object at 0x72982a08c4a0>,
        <tomotree.Cell object at 0x72982a08c4d0>,
        <tomotree.Cell object at 0x72982a08c500>,
        <tomotree.Cell object at 0x72982a08c530>,
        <tomotree.Cell object at 0x72982a08c560>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08cef0>,
        <tomotree.Cell object at 0x72982a08cf20>,
        <tomotree.Cell object at 0x72982a08cf50>,
        <tomotree.Cell object at 0x72982a08cf80>,
        <tomotree.Cell object at 0x72982a08cfb0>,
        <tomotree.Cell object at 0x72982a08cfe0>,
        <tomotree.Cell object at 0x72982a08d010>,
        <tomotree.Cell object at 0x72982a08d040>,
        <tomotree.Cell object at 0x72982a08d070>,
        <tomotree.Cell object at 0x72982a08d0a0>,
        <tomotree.Cell object at 0x72982a08d0d0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08da60>,
        <tomotree.Cell object at 0x72982a08da90>,
        <tomotree.Cell object at 0x72982a08dac0>,
        <tomotree.Cell object at 0x72982a08daf0>,
        <tomotree.Cell object at 0x72982a08db20>,
        <tomotree.Cell object at 0x72982a08db50>,
        <tomotree.Cell object at 0x72982a08db80>,
        <tomotree.Cell object at 0x72982a08dbb0>,
        <tomotree.Cell object at 0x72982a08dbe0>,
        <tomotree.Cell object at 0x72982a08dc10>,
        <tomotree.Cell object at 0x72982a08dc40>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08e5d0>,
        <tomotree.Cell object at 0x72982a08e600>,
        <tomotree.Cell object at 0x72982a08e630>,
        <tomotree.Cell object at 0x72982a08e660>,
        <tomotree.Cell object at 0x72982a08e690>,
        <tomotree.Cell object at 0x72982a08e6c0>,
        <tomotree.Cell object at 0x72982a08e6f0>,
        <tomotree.Cell object at 0x72982a08e720>,
        <tomotree.Cell object at 0x72982a08e750>,
        <tomotree.Cell object at 0x72982a08e780>,
        <tomotree.Cell object at 0x72982a08e7b0>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f140>,
        <tomotree.Cell object at 0x72982a08f170>,
        <tomotree.Cell object at 0x72982a08f1a0>,
        <tomotree.Cell object at 0x72982a08f1d0>,
        <tomotree.Cell object at 0x72982a08f200>,
        <tomotree.Cell object at 0x72982a08f230>,
        <tomotree.Cell object at 0x72982a08f260>,
        <tomotree.Cell object at 0x72982a08f290>,
        <tomotree.Cell object at 0x72982a08f2c0>,
        <tomotree.Cell object at 0x72982a08f2f0>,
        <tomotree.Cell object at 0x72982a08f320>,
        <tomotree.Cell object at 0x72982a08f770>,
        <tomotree.Cell object at 0x72982a08f7a0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x72982a08fcb0>,
        <tomotree.Cell object at 0x72982a08fce0>,
        <tomotree.Cell object at 0x72982a08fd10>,
        <tomotree.Cell object at 0x72982a08fd40>,
        <tomotree.Cell object at 0x72982a08fd70>,
        <tomotree.Cell object at 0x72982a08fda0>,
        <tomotree.Cell object at 0x72982a08fdd0>,
        <tomotree.Cell object at 0x72982a08fe00>,
        <tomotree.Cell object at 0x72982a08fe30>,
        <tomotree.Cell object at 0x72982a08fe60>,
        <tomotree.Cell object at 0x72982a08fe90>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8860>,
        <tomotree.Cell object at 0x729829eb8890>,
        <tomotree.Cell object at 0x729829eb88c0>,
        <tomotree.Cell object at 0x729829eb88f0>,
        <tomotree.Cell object at 0x729829eb8920>,
        <tomotree.Cell object at 0x729829eb8950>,
        <tomotree.Cell object at 0x729829eb8980>,
        <tomotree.Cell object at 0x729829eb89b0>,
        <tomotree.Cell object at 0x729829eb89e0>,
        <tomotree.Cell object at 0x729829eb8a10>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb93a0>,
        <tomotree.Cell object at 0x729829eb93d0>,
        <tomotree.Cell object at 0x729829eb9400>,
        <tomotree.Cell object at 0x729829eb9430>,
        <tomotree.Cell object at 0x729829eb9460>,
        <tomotree.Cell object at 0x729829eb9490>,
        <tomotree.Cell object at 0x729829eb94c0>,
        <tomotree.Cell object at 0x729829eb94f0>,
        <tomotree.Cell object at 0x729829eb9520>,
        <tomotree.Cell object at 0x729829eb9550>,
        <tomotree.Cell object at 0x729829eb9580>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eb9f10>,
        <tomotree.Cell object at 0x729829eb9f40>,
        <tomotree.Cell object at 0x729829eb9f70>,
        <tomotree.Cell object at 0x729829eb9fa0>,
        <tomotree.Cell object at 0x729829eb9fd0>,
        <tomotree.Cell object at 0x729829eba000>,
        <tomotree.Cell object at 0x729829eba030>,
        <tomotree.Cell object at 0x729829eba060>,
        <tomotree.Cell object at 0x729829eba090>,
        <tomotree.Cell object at 0x729829eba0c0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebaa50>,
        <tomotree.Cell object at 0x729829ebaa80>,
        <tomotree.Cell object at 0x729829ebaab0>,
        <tomotree.Cell object at 0x729829ebaae0>,
        <tomotree.Cell object at 0x729829ebab10>,
        <tomotree.Cell object at 0x729829ebab40>,
        <tomotree.Cell object at 0x729829ebab70>,
        <tomotree.Cell object at 0x729829ebaba0>,
        <tomotree.Cell object at 0x729829ebabd0>,
        <tomotree.Cell object at 0x729829ebac00>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebb590>,
        <tomotree.Cell object at 0x729829ebb5c0>,
        <tomotree.Cell object at 0x729829ebb5f0>,
        <tomotree.Cell object at 0x729829ebb620>,
        <tomotree.Cell object at 0x729829ebb650>,
        <tomotree.Cell object at 0x729829ebb680>,
        <tomotree.Cell object at 0x729829ebb6b0>,
        <tomotree.Cell object at 0x729829ebb6e0>,
        <tomotree.Cell object at 0x729829ebb710>,
        <tomotree.Cell object at 0x729829ebb740>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc140>,
        <tomotree.Cell object at 0x729829edc170>,
        <tomotree.Cell object at 0x729829edc1a0>,
        <tomotree.Cell object at 0x729829edc1d0>,
        <tomotree.Cell object at 0x729829edc200>,
        <tomotree.Cell object at 0x729829edc230>,
        <tomotree.Cell object at 0x729829edc260>,
        <tomotree.Cell object at 0x729829edc290>,
        <tomotree.Cell object at 0x729829edc2c0>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edcc80>,
        <tomotree.Cell object at 0x729829edccb0>,
        <tomotree.Cell object at 0x729829edcce0>,
        <tomotree.Cell object at 0x729829edcd10>,
        <tomotree.Cell object at 0x729829edcd40>,
        <tomotree.Cell object at 0x729829edcd70>,
        <tomotree.Cell object at 0x729829edcda0>,
        <tomotree.Cell object at 0x729829edcdd0>,
        <tomotree.Cell object at 0x729829edce00>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x729829edd7c0>,
        <tomotree.Cell object at 0x729829edd7f0>,
        <tomotree.Cell object at 0x729829edd820>,
        <tomotree.Cell object at 0x729829edd850>,
        <tomotree.Cell object at 0x729829edd880>,
        <tomotree.Cell object at 0x729829edd8b0>,
        <tomotree.Cell object at 0x729829edd8e0>,
        <tomotree.Cell object at 0x729829edd910>,
        <tomotree.Cell object at 0x729829edd940>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede030>,
        <tomotree.Cell object at 0x729829ede060>,
        <tomotree.Cell object at 0x729829ede090>,
        <tomotree.Cell object at 0x729829ede0c0>,
        <tomotree.Cell object at 0x729829ede0f0>,
        <tomotree.Cell object at 0x729829ede120>,
        <tomotree.Cell object at 0x729829ede150>,
        <tomotree.Cell object at 0x729829ede180>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edeb40>,
        <tomotree.Cell object at 0x729829edeb70>,
        <tomotree.Cell object at 0x729829edeba0>,
        <tomotree.Cell object at 0x729829edebd0>,
        <tomotree.Cell object at 0x729829edec00>,
        <tomotree.Cell object at 0x729829edec30>,
        <tomotree.Cell object at 0x729829edec60>,
        <tomotree.Cell object at 0x729829edec90>,
        <tomotree.Cell object at 0x729829edecc0>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edf680>,
        <tomotree.Cell object at 0x729829edf6b0>,
        <tomotree.Cell object at 0x729829edf6e0>,
        <tomotree.Cell object at 0x729829edf710>,
        <tomotree.Cell object at 0x729829edf740>,
        <tomotree.Cell object at 0x729829edf770>,
        <tomotree.Cell object at 0x729829edf7a0>,
        <tomotree.Cell object at 0x729829edf7d0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc1d0>,
        <tomotree.Cell object at 0x729829efc200>,
        <tomotree.Cell object at 0x729829efc230>,
        <tomotree.Cell object at 0x729829efc260>,
        <tomotree.Cell object at 0x729829efc290>,
        <tomotree.Cell object at 0x729829efc2c0>,
        <tomotree.Cell object at 0x729829efc2f0>,
        <tomotree.Cell object at 0x729829efc320>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efcce0>,
        <tomotree.Cell object at 0x729829efcd10>,
        <tomotree.Cell object at 0x729829efcd40>,
        <tomotree.Cell object at 0x729829efcd70>,
        <tomotree.Cell object at 0x729829efcda0>,
        <tomotree.Cell object at 0x729829efcdd0>,
        <tomotree.Cell object at 0x729829efce00>,
        <tomotree.Cell object at 0x729829efce30>,
        <tomotree.Cell object at 0x729829efd4f0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efd7f0>,
        <tomotree.Cell object at 0x729829efd820>,
        <tomotree.Cell object at 0x729829efd850>,
        <tomotree.Cell object at 0x729829efd880>,
        <tomotree.Cell object at 0x729829efd8b0>,
        <tomotree.Cell object at 0x729829efd8e0>,
        <tomotree.Cell object at 0x729829efd910>,
        <tomotree.Cell object at 0x729829efe0c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>,
        <tomotree.Cell object at 0x729829efe2a0>,
        <tomotree.Cell object at 0x729829efe2d0>,
        <tomotree.Cell object at 0x729829efe300>,
        <tomotree.Cell object at 0x729829efe330>,
        <tomotree.Cell object at 0x729829efe360>,
        <tomotree.Cell object at 0x729829efe390>,
        <tomotree.Cell object at 0x729829efe3c0>,
        <tomotree.Cell object at 0x729829efe3f0>,
        <tomotree.Cell object at 0x729829efecc0>,
        <tomotree.Cell object at 0x729829efecf0>,
        <tomotree.Cell object at 0x729829efed20>,
        <tomotree.Cell object at 0x729829efed50>,
        <tomotree.Cell object at 0x729829efed80>,
        <tomotree.Cell object at 0x729829efedb0>,
        <tomotree.Cell object at 0x729829efede0>,
        <tomotree.Cell object at 0x729829efee10>,
        <tomotree.Cell object at 0x729829efee40>,
        <tomotree.Cell object at 0x729829efee70>], dtype=object),
 <tomotree.Ray at 0x72982a073110>: array([<tomotree.Cell object at 0x72982a0733b0>,
        <tomotree.Cell object at 0x72982a0733e0>,
        <tomotree.Cell object at 0x729829fc9c70>,
        <tomotree.Cell object at 0x729829fc8920>,
        <tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a0734d0>,
        <tomotree.Cell object at 0x72982a073500>,
        <tomotree.Cell object at 0x72982a073530>,
        <tomotree.Cell object at 0x72982a073560>,
        <tomotree.Cell object at 0x72982a073590>,
        <tomotree.Cell object at 0x72982a0735c0>,
        <tomotree.Cell object at 0x72982a0735f0>,
        <tomotree.Cell object at 0x72982a073620>,
        <tomotree.Cell object at 0x72982a073650>,
        <tomotree.Cell object at 0x72982a073680>,
        <tomotree.Cell object at 0x72982a0736b0>,
        <tomotree.Cell object at 0x72982a0736e0>,
        <tomotree.Cell object at 0x72982a073710>,
        <tomotree.Cell object at 0x72982a073740>,
        <tomotree.Cell object at 0x72982a073770>,
        <tomotree.Cell object at 0x72982a073e60>,
        <tomotree.Cell object at 0x72982a073e90>,
        <tomotree.Cell object at 0x72982a073ec0>,
        <tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c0e0>,
        <tomotree.Cell object at 0x72982a08c110>,
        <tomotree.Cell object at 0x72982a08c140>,
        <tomotree.Cell object at 0x72982a08c170>,
        <tomotree.Cell object at 0x72982a08c1a0>,
        <tomotree.Cell object at 0x72982a08c1d0>,
        <tomotree.Cell object at 0x72982a08c200>,
        <tomotree.Cell object at 0x72982a08c230>,
        <tomotree.Cell object at 0x72982a08c260>,
        <tomotree.Cell object at 0x72982a08c290>,
        <tomotree.Cell object at 0x72982a08c2c0>,
        <tomotree.Cell object at 0x72982a08c2f0>,
        <tomotree.Cell object at 0x72982a08c320>,
        <tomotree.Cell object at 0x72982a08c350>,
        <tomotree.Cell object at 0x72982a08c9e0>,
        <tomotree.Cell object at 0x72982a08ca10>,
        <tomotree.Cell object at 0x72982a08ca40>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08cc80>,
        <tomotree.Cell object at 0x72982a08ccb0>,
        <tomotree.Cell object at 0x72982a08cce0>,
        <tomotree.Cell object at 0x72982a08cd10>,
        <tomotree.Cell object at 0x72982a08cd40>,
        <tomotree.Cell object at 0x72982a08cd70>,
        <tomotree.Cell object at 0x72982a08cda0>,
        <tomotree.Cell object at 0x72982a08cdd0>,
        <tomotree.Cell object at 0x72982a08ce00>,
        <tomotree.Cell object at 0x72982a08ce30>,
        <tomotree.Cell object at 0x72982a08ce60>,
        <tomotree.Cell object at 0x72982a08ce90>,
        <tomotree.Cell object at 0x72982a08cec0>,
        <tomotree.Cell object at 0x72982a08d520>,
        <tomotree.Cell object at 0x72982a08d550>,
        <tomotree.Cell object at 0x72982a08d580>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08d7f0>,
        <tomotree.Cell object at 0x72982a08d820>,
        <tomotree.Cell object at 0x72982a08d850>,
        <tomotree.Cell object at 0x72982a08d880>,
        <tomotree.Cell object at 0x72982a08d8b0>,
        <tomotree.Cell object at 0x72982a08d8e0>,
        <tomotree.Cell object at 0x72982a08d910>,
        <tomotree.Cell object at 0x72982a08d940>,
        <tomotree.Cell object at 0x72982a08d970>,
        <tomotree.Cell object at 0x72982a08d9a0>,
        <tomotree.Cell object at 0x72982a08d9d0>,
        <tomotree.Cell object at 0x72982a08da00>,
        <tomotree.Cell object at 0x72982a08da30>,
        <tomotree.Cell object at 0x72982a08e060>,
        <tomotree.Cell object at 0x72982a08e090>,
        <tomotree.Cell object at 0x72982a08e0c0>,
        <tomotree.Cell object at 0x72982a08e0f0>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08e390>,
        <tomotree.Cell object at 0x72982a08e3c0>,
        <tomotree.Cell object at 0x72982a08e3f0>,
        <tomotree.Cell object at 0x72982a08e420>,
        <tomotree.Cell object at 0x72982a08e450>,
        <tomotree.Cell object at 0x72982a08e480>,
        <tomotree.Cell object at 0x72982a08e4b0>,
        <tomotree.Cell object at 0x72982a08e4e0>,
        <tomotree.Cell object at 0x72982a08e510>,
        <tomotree.Cell object at 0x72982a08e540>,
        <tomotree.Cell object at 0x72982a08e570>,
        <tomotree.Cell object at 0x72982a08e5a0>,
        <tomotree.Cell object at 0x72982a08eba0>,
        <tomotree.Cell object at 0x72982a08ebd0>,
        <tomotree.Cell object at 0x72982a08ec00>,
        <tomotree.Cell object at 0x72982a08ec30>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08ef00>,
        <tomotree.Cell object at 0x72982a08ef30>,
        <tomotree.Cell object at 0x72982a08ef60>,
        <tomotree.Cell object at 0x72982a08ef90>,
        <tomotree.Cell object at 0x72982a08efc0>,
        <tomotree.Cell object at 0x72982a08eff0>,
        <tomotree.Cell object at 0x72982a08f020>,
        <tomotree.Cell object at 0x72982a08f050>,
        <tomotree.Cell object at 0x72982a08f080>,
        <tomotree.Cell object at 0x72982a08f0b0>,
        <tomotree.Cell object at 0x72982a08f0e0>,
        <tomotree.Cell object at 0x72982a08f110>,
        <tomotree.Cell object at 0x72982a08f6e0>,
        <tomotree.Cell object at 0x72982a08f710>,
        <tomotree.Cell object at 0x72982a08f740>,
        <tomotree.Cell object at 0x72982a08f770>,
        <tomotree.Cell object at 0x72982a08f7a0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x72982a08fa70>,
        <tomotree.Cell object at 0x72982a08faa0>,
        <tomotree.Cell object at 0x72982a08fad0>,
        <tomotree.Cell object at 0x72982a08fb00>,
        <tomotree.Cell object at 0x72982a08fb30>,
        <tomotree.Cell object at 0x72982a08fb60>,
        <tomotree.Cell object at 0x72982a08fb90>,
        <tomotree.Cell object at 0x72982a08fbc0>,
        <tomotree.Cell object at 0x72982a08fbf0>,
        <tomotree.Cell object at 0x72982a08fc20>,
        <tomotree.Cell object at 0x72982a08fc50>,
        <tomotree.Cell object at 0x72982a08fc80>,
        <tomotree.Cell object at 0x729829eb8260>,
        <tomotree.Cell object at 0x729829eb8290>,
        <tomotree.Cell object at 0x729829eb82c0>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8620>,
        <tomotree.Cell object at 0x729829eb8650>,
        <tomotree.Cell object at 0x729829eb8680>,
        <tomotree.Cell object at 0x729829eb86b0>,
        <tomotree.Cell object at 0x729829eb86e0>,
        <tomotree.Cell object at 0x729829eb8710>,
        <tomotree.Cell object at 0x729829eb8740>,
        <tomotree.Cell object at 0x729829eb8770>,
        <tomotree.Cell object at 0x729829eb87a0>,
        <tomotree.Cell object at 0x729829eb87d0>,
        <tomotree.Cell object at 0x729829eb8800>,
        <tomotree.Cell object at 0x729829eb8830>,
        <tomotree.Cell object at 0x729829eb8dd0>,
        <tomotree.Cell object at 0x729829eb8e00>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9190>,
        <tomotree.Cell object at 0x729829eb91c0>,
        <tomotree.Cell object at 0x729829eb91f0>,
        <tomotree.Cell object at 0x729829eb9220>,
        <tomotree.Cell object at 0x729829eb9250>,
        <tomotree.Cell object at 0x729829eb9280>,
        <tomotree.Cell object at 0x729829eb92b0>,
        <tomotree.Cell object at 0x729829eb92e0>,
        <tomotree.Cell object at 0x729829eb9310>,
        <tomotree.Cell object at 0x729829eb9340>,
        <tomotree.Cell object at 0x729829eb9370>,
        <tomotree.Cell object at 0x729829eb9940>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eb9d00>,
        <tomotree.Cell object at 0x729829eb9d30>,
        <tomotree.Cell object at 0x729829eb9d60>,
        <tomotree.Cell object at 0x729829eb9d90>,
        <tomotree.Cell object at 0x729829eb9dc0>,
        <tomotree.Cell object at 0x729829eb9df0>,
        <tomotree.Cell object at 0x729829eb9e20>,
        <tomotree.Cell object at 0x729829eb9e50>,
        <tomotree.Cell object at 0x729829eb9e80>,
        <tomotree.Cell object at 0x729829eb9eb0>,
        <tomotree.Cell object at 0x729829eb9ee0>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829eba840>,
        <tomotree.Cell object at 0x729829eba870>,
        <tomotree.Cell object at 0x729829eba8a0>,
        <tomotree.Cell object at 0x729829eba8d0>,
        <tomotree.Cell object at 0x729829eba900>,
        <tomotree.Cell object at 0x729829eba930>,
        <tomotree.Cell object at 0x729829eba960>,
        <tomotree.Cell object at 0x729829eba990>,
        <tomotree.Cell object at 0x729829eba9c0>,
        <tomotree.Cell object at 0x729829eba9f0>,
        <tomotree.Cell object at 0x729829ebaa20>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebb3b0>,
        <tomotree.Cell object at 0x729829ebb3e0>,
        <tomotree.Cell object at 0x729829ebb410>,
        <tomotree.Cell object at 0x729829ebb440>,
        <tomotree.Cell object at 0x729829ebb470>,
        <tomotree.Cell object at 0x729829ebb4a0>,
        <tomotree.Cell object at 0x729829ebb4d0>,
        <tomotree.Cell object at 0x729829ebb500>,
        <tomotree.Cell object at 0x729829ebb530>,
        <tomotree.Cell object at 0x729829ebb560>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829ebbf20>,
        <tomotree.Cell object at 0x729829ebbf50>,
        <tomotree.Cell object at 0x729829ebbf80>,
        <tomotree.Cell object at 0x729829ebbfb0>,
        <tomotree.Cell object at 0x729829ebbfe0>,
        <tomotree.Cell object at 0x729829edc050>,
        <tomotree.Cell object at 0x729829edc080>,
        <tomotree.Cell object at 0x729829edc0b0>,
        <tomotree.Cell object at 0x729829edc0e0>,
        <tomotree.Cell object at 0x729829edc110>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edcaa0>,
        <tomotree.Cell object at 0x729829edcad0>,
        <tomotree.Cell object at 0x729829edcb00>,
        <tomotree.Cell object at 0x729829edcb30>,
        <tomotree.Cell object at 0x729829edcb60>,
        <tomotree.Cell object at 0x729829edcb90>,
        <tomotree.Cell object at 0x729829edcbc0>,
        <tomotree.Cell object at 0x729829edcbf0>,
        <tomotree.Cell object at 0x729829edcc20>,
        <tomotree.Cell object at 0x729829edcc50>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x729829edd5e0>,
        <tomotree.Cell object at 0x729829edd610>,
        <tomotree.Cell object at 0x729829edd640>,
        <tomotree.Cell object at 0x729829edd670>,
        <tomotree.Cell object at 0x729829edd6a0>,
        <tomotree.Cell object at 0x729829edd6d0>,
        <tomotree.Cell object at 0x729829edd700>,
        <tomotree.Cell object at 0x729829edd730>,
        <tomotree.Cell object at 0x729829edd760>,
        <tomotree.Cell object at 0x729829edd790>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829edde50>,
        <tomotree.Cell object at 0x729829edde80>,
        <tomotree.Cell object at 0x729829eddeb0>,
        <tomotree.Cell object at 0x729829eddee0>,
        <tomotree.Cell object at 0x729829eddf10>,
        <tomotree.Cell object at 0x729829eddf40>,
        <tomotree.Cell object at 0x729829eddf70>,
        <tomotree.Cell object at 0x729829eddfa0>,
        <tomotree.Cell object at 0x729829eddfd0>,
        <tomotree.Cell object at 0x729829ede000>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829ede990>,
        <tomotree.Cell object at 0x729829ede9c0>,
        <tomotree.Cell object at 0x729829ede9f0>,
        <tomotree.Cell object at 0x729829edea20>,
        <tomotree.Cell object at 0x729829edea50>,
        <tomotree.Cell object at 0x729829edea80>,
        <tomotree.Cell object at 0x729829edeab0>,
        <tomotree.Cell object at 0x729829edeae0>,
        <tomotree.Cell object at 0x729829edeb10>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edf4d0>,
        <tomotree.Cell object at 0x729829edf500>,
        <tomotree.Cell object at 0x729829edf530>,
        <tomotree.Cell object at 0x729829edf560>,
        <tomotree.Cell object at 0x729829edf590>,
        <tomotree.Cell object at 0x729829edf5c0>,
        <tomotree.Cell object at 0x729829edf5f0>,
        <tomotree.Cell object at 0x729829edf620>,
        <tomotree.Cell object at 0x729829edf650>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829edffe0>,
        <tomotree.Cell object at 0x729829efc050>,
        <tomotree.Cell object at 0x729829efc080>,
        <tomotree.Cell object at 0x729829efc0b0>,
        <tomotree.Cell object at 0x729829efc0e0>,
        <tomotree.Cell object at 0x729829efc110>,
        <tomotree.Cell object at 0x729829efc140>,
        <tomotree.Cell object at 0x729829efc170>,
        <tomotree.Cell object at 0x729829efc1a0>,
        <tomotree.Cell object at 0x729829efc950>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>,
        <tomotree.Cell object at 0x729829efcb30>,
        <tomotree.Cell object at 0x729829efcb60>,
        <tomotree.Cell object at 0x729829efcb90>,
        <tomotree.Cell object at 0x729829efcbc0>,
        <tomotree.Cell object at 0x729829efcbf0>,
        <tomotree.Cell object at 0x729829efcc20>,
        <tomotree.Cell object at 0x729829efcc50>,
        <tomotree.Cell object at 0x729829efcc80>,
        <tomotree.Cell object at 0x729829efccb0>,
        <tomotree.Cell object at 0x729829efd520>,
        <tomotree.Cell object at 0x729829efd550>,
        <tomotree.Cell object at 0x729829efd580>,
        <tomotree.Cell object at 0x729829efd5b0>,
        <tomotree.Cell object at 0x729829efd5e0>,
        <tomotree.Cell object at 0x729829efd610>,
        <tomotree.Cell object at 0x729829efd640>,
        <tomotree.Cell object at 0x729829efd670>,
        <tomotree.Cell object at 0x729829efd6a0>,
        <tomotree.Cell object at 0x729829efd6d0>,
        <tomotree.Cell object at 0x729829efd700>,
        <tomotree.Cell object at 0x729829efd730>,
        <tomotree.Cell object at 0x729829efd760>,
        <tomotree.Cell object at 0x729829efd790>,
        <tomotree.Cell object at 0x729829efd7c0>,
        <tomotree.Cell object at 0x729829efe0f0>,
        <tomotree.Cell object at 0x729829efe120>,
        <tomotree.Cell object at 0x729829efe150>,
        <tomotree.Cell object at 0x729829efe180>,
        <tomotree.Cell object at 0x729829efe1b0>,
        <tomotree.Cell object at 0x729829efe1e0>,
        <tomotree.Cell object at 0x729829efe210>,
        <tomotree.Cell object at 0x729829efe240>,
        <tomotree.Cell object at 0x729829efe270>], dtype=object),
 <tomotree.Ray at 0x72982a073170>: array([<tomotree.Cell object at 0x72982aa2d8b0>,
        <tomotree.Cell object at 0x72982a0733b0>,
        <tomotree.Cell object at 0x72982a0733e0>,
        <tomotree.Cell object at 0x729829fc9c70>,
        <tomotree.Cell object at 0x729829fc8920>,
        <tomotree.Cell object at 0x72982a053fb0>,
        <tomotree.Cell object at 0x72982a073410>,
        <tomotree.Cell object at 0x72982a073440>,
        <tomotree.Cell object at 0x72982a073470>,
        <tomotree.Cell object at 0x72982a0734a0>,
        <tomotree.Cell object at 0x72982a073e00>,
        <tomotree.Cell object at 0x72982a073e30>,
        <tomotree.Cell object at 0x72982a073e60>,
        <tomotree.Cell object at 0x72982a073e90>,
        <tomotree.Cell object at 0x72982a073ec0>,
        <tomotree.Cell object at 0x72982a073ef0>,
        <tomotree.Cell object at 0x72982a073f20>,
        <tomotree.Cell object at 0x72982a073f50>,
        <tomotree.Cell object at 0x72982a073f80>,
        <tomotree.Cell object at 0x72982a073fb0>,
        <tomotree.Cell object at 0x72982a073fe0>,
        <tomotree.Cell object at 0x72982a08c050>,
        <tomotree.Cell object at 0x72982a08c080>,
        <tomotree.Cell object at 0x72982a08c0b0>,
        <tomotree.Cell object at 0x72982a08c980>,
        <tomotree.Cell object at 0x72982a08c9b0>,
        <tomotree.Cell object at 0x72982a08c9e0>,
        <tomotree.Cell object at 0x72982a08ca10>,
        <tomotree.Cell object at 0x72982a08ca40>,
        <tomotree.Cell object at 0x72982a08ca70>,
        <tomotree.Cell object at 0x72982a08caa0>,
        <tomotree.Cell object at 0x72982a08cad0>,
        <tomotree.Cell object at 0x72982a08cb00>,
        <tomotree.Cell object at 0x72982a08cb30>,
        <tomotree.Cell object at 0x72982a08cb60>,
        <tomotree.Cell object at 0x72982a08cb90>,
        <tomotree.Cell object at 0x72982a08cbc0>,
        <tomotree.Cell object at 0x72982a08cbf0>,
        <tomotree.Cell object at 0x72982a08cc20>,
        <tomotree.Cell object at 0x72982a08cc50>,
        <tomotree.Cell object at 0x72982a08d490>,
        <tomotree.Cell object at 0x72982a08d4c0>,
        <tomotree.Cell object at 0x72982a08d4f0>,
        <tomotree.Cell object at 0x72982a08d520>,
        <tomotree.Cell object at 0x72982a08d550>,
        <tomotree.Cell object at 0x72982a08d580>,
        <tomotree.Cell object at 0x72982a08d5b0>,
        <tomotree.Cell object at 0x72982a08d5e0>,
        <tomotree.Cell object at 0x72982a08d610>,
        <tomotree.Cell object at 0x72982a08d640>,
        <tomotree.Cell object at 0x72982a08d670>,
        <tomotree.Cell object at 0x72982a08d6a0>,
        <tomotree.Cell object at 0x72982a08d6d0>,
        <tomotree.Cell object at 0x72982a08d700>,
        <tomotree.Cell object at 0x72982a08d730>,
        <tomotree.Cell object at 0x72982a08d760>,
        <tomotree.Cell object at 0x72982a08d790>,
        <tomotree.Cell object at 0x72982a08d7c0>,
        <tomotree.Cell object at 0x72982a08dfd0>,
        <tomotree.Cell object at 0x72982a08e000>,
        <tomotree.Cell object at 0x72982a08e030>,
        <tomotree.Cell object at 0x72982a08e060>,
        <tomotree.Cell object at 0x72982a08e090>,
        <tomotree.Cell object at 0x72982a08e0c0>,
        <tomotree.Cell object at 0x72982a08e0f0>,
        <tomotree.Cell object at 0x72982a08e120>,
        <tomotree.Cell object at 0x72982a08e150>,
        <tomotree.Cell object at 0x72982a08e180>,
        <tomotree.Cell object at 0x72982a08e1b0>,
        <tomotree.Cell object at 0x72982a08e1e0>,
        <tomotree.Cell object at 0x72982a08e210>,
        <tomotree.Cell object at 0x72982a08e240>,
        <tomotree.Cell object at 0x72982a08e270>,
        <tomotree.Cell object at 0x72982a08e2a0>,
        <tomotree.Cell object at 0x72982a08e2d0>,
        <tomotree.Cell object at 0x72982a08e300>,
        <tomotree.Cell object at 0x72982a08e330>,
        <tomotree.Cell object at 0x72982a08e360>,
        <tomotree.Cell object at 0x72982a08eb40>,
        <tomotree.Cell object at 0x72982a08eb70>,
        <tomotree.Cell object at 0x72982a08eba0>,
        <tomotree.Cell object at 0x72982a08ebd0>,
        <tomotree.Cell object at 0x72982a08ec00>,
        <tomotree.Cell object at 0x72982a08ec30>,
        <tomotree.Cell object at 0x72982a08ec60>,
        <tomotree.Cell object at 0x72982a08ec90>,
        <tomotree.Cell object at 0x72982a08ecc0>,
        <tomotree.Cell object at 0x72982a08ecf0>,
        <tomotree.Cell object at 0x72982a08ed20>,
        <tomotree.Cell object at 0x72982a08ed50>,
        <tomotree.Cell object at 0x72982a08ed80>,
        <tomotree.Cell object at 0x72982a08edb0>,
        <tomotree.Cell object at 0x72982a08ede0>,
        <tomotree.Cell object at 0x72982a08ee10>,
        <tomotree.Cell object at 0x72982a08ee40>,
        <tomotree.Cell object at 0x72982a08ee70>,
        <tomotree.Cell object at 0x72982a08eea0>,
        <tomotree.Cell object at 0x72982a08eed0>,
        <tomotree.Cell object at 0x72982a08f6b0>,
        <tomotree.Cell object at 0x72982a08f6e0>,
        <tomotree.Cell object at 0x72982a08f710>,
        <tomotree.Cell object at 0x72982a08f740>,
        <tomotree.Cell object at 0x72982a08f770>,
        <tomotree.Cell object at 0x72982a08f7a0>,
        <tomotree.Cell object at 0x72982a08f7d0>,
        <tomotree.Cell object at 0x72982a08f800>,
        <tomotree.Cell object at 0x72982a08f830>,
        <tomotree.Cell object at 0x72982a08f860>,
        <tomotree.Cell object at 0x72982a08f890>,
        <tomotree.Cell object at 0x72982a08f8c0>,
        <tomotree.Cell object at 0x72982a08f8f0>,
        <tomotree.Cell object at 0x72982a08f920>,
        <tomotree.Cell object at 0x72982a08f950>,
        <tomotree.Cell object at 0x72982a08f980>,
        <tomotree.Cell object at 0x72982a08f9b0>,
        <tomotree.Cell object at 0x72982a08f9e0>,
        <tomotree.Cell object at 0x72982a08fa10>,
        <tomotree.Cell object at 0x72982a08fa40>,
        <tomotree.Cell object at 0x729829eb8260>,
        <tomotree.Cell object at 0x729829eb8290>,
        <tomotree.Cell object at 0x729829eb82c0>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb83b0>,
        <tomotree.Cell object at 0x729829eb83e0>,
        <tomotree.Cell object at 0x729829eb8410>,
        <tomotree.Cell object at 0x729829eb8440>,
        <tomotree.Cell object at 0x729829eb8470>,
        <tomotree.Cell object at 0x729829eb84a0>,
        <tomotree.Cell object at 0x729829eb84d0>,
        <tomotree.Cell object at 0x729829eb8500>,
        <tomotree.Cell object at 0x729829eb8530>,
        <tomotree.Cell object at 0x729829eb8560>,
        <tomotree.Cell object at 0x729829eb8590>,
        <tomotree.Cell object at 0x729829eb85c0>,
        <tomotree.Cell object at 0x729829eb85f0>,
        <tomotree.Cell object at 0x729829eb8dd0>,
        <tomotree.Cell object at 0x729829eb8e00>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb8f80>,
        <tomotree.Cell object at 0x729829eb8fb0>,
        <tomotree.Cell object at 0x729829eb8fe0>,
        <tomotree.Cell object at 0x729829eb9010>,
        <tomotree.Cell object at 0x729829eb9040>,
        <tomotree.Cell object at 0x729829eb9070>,
        <tomotree.Cell object at 0x729829eb90a0>,
        <tomotree.Cell object at 0x729829eb90d0>,
        <tomotree.Cell object at 0x729829eb9100>,
        <tomotree.Cell object at 0x729829eb9130>,
        <tomotree.Cell object at 0x729829eb9160>,
        <tomotree.Cell object at 0x729829eb9940>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eb9b20>,
        <tomotree.Cell object at 0x729829eb9b50>,
        <tomotree.Cell object at 0x729829eb9b80>,
        <tomotree.Cell object at 0x729829eb9bb0>,
        <tomotree.Cell object at 0x729829eb9be0>,
        <tomotree.Cell object at 0x729829eb9c10>,
        <tomotree.Cell object at 0x729829eb9c40>,
        <tomotree.Cell object at 0x729829eb9c70>,
        <tomotree.Cell object at 0x729829eb9ca0>,
        <tomotree.Cell object at 0x729829eb9cd0>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829eba690>,
        <tomotree.Cell object at 0x729829eba6c0>,
        <tomotree.Cell object at 0x729829eba6f0>,
        <tomotree.Cell object at 0x729829eba720>,
        <tomotree.Cell object at 0x729829eba750>,
        <tomotree.Cell object at 0x729829eba780>,
        <tomotree.Cell object at 0x729829eba7b0>,
        <tomotree.Cell object at 0x729829eba7e0>,
        <tomotree.Cell object at 0x729829eba810>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebb200>,
        <tomotree.Cell object at 0x729829ebb230>,
        <tomotree.Cell object at 0x729829ebb260>,
        <tomotree.Cell object at 0x729829ebb290>,
        <tomotree.Cell object at 0x729829ebb2c0>,
        <tomotree.Cell object at 0x729829ebb2f0>,
        <tomotree.Cell object at 0x729829ebb320>,
        <tomotree.Cell object at 0x729829ebb350>,
        <tomotree.Cell object at 0x729829ebb380>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829ebbda0>,
        <tomotree.Cell object at 0x729829ebbdd0>,
        <tomotree.Cell object at 0x729829ebbe00>,
        <tomotree.Cell object at 0x729829ebbe30>,
        <tomotree.Cell object at 0x729829ebbe60>,
        <tomotree.Cell object at 0x729829ebbe90>,
        <tomotree.Cell object at 0x729829ebbec0>,
        <tomotree.Cell object at 0x729829ebbef0>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edc920>,
        <tomotree.Cell object at 0x729829edc950>,
        <tomotree.Cell object at 0x729829edc980>,
        <tomotree.Cell object at 0x729829edc9b0>,
        <tomotree.Cell object at 0x729829edc9e0>,
        <tomotree.Cell object at 0x729829edca10>,
        <tomotree.Cell object at 0x729829edca40>,
        <tomotree.Cell object at 0x729829edca70>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x729829edd490>,
        <tomotree.Cell object at 0x729829edd4c0>,
        <tomotree.Cell object at 0x729829edd4f0>,
        <tomotree.Cell object at 0x729829edd520>,
        <tomotree.Cell object at 0x729829edd550>,
        <tomotree.Cell object at 0x729829edd580>,
        <tomotree.Cell object at 0x729829edd5b0>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x72982a15b860>,
        <tomotree.Cell object at 0x72982a15b890>,
        <tomotree.Cell object at 0x72982a15b8c0>,
        <tomotree.Cell object at 0x729829edddc0>,
        <tomotree.Cell object at 0x729829edddf0>,
        <tomotree.Cell object at 0x729829edde20>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829ede870>,
        <tomotree.Cell object at 0x729829ede8a0>,
        <tomotree.Cell object at 0x729829ede8d0>,
        <tomotree.Cell object at 0x729829ede900>,
        <tomotree.Cell object at 0x729829ede930>,
        <tomotree.Cell object at 0x729829ede960>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edf3b0>,
        <tomotree.Cell object at 0x729829edf3e0>,
        <tomotree.Cell object at 0x729829edf410>,
        <tomotree.Cell object at 0x729829edf440>,
        <tomotree.Cell object at 0x729829edf470>,
        <tomotree.Cell object at 0x729829edf4a0>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>,
        <tomotree.Cell object at 0x729829edfef0>,
        <tomotree.Cell object at 0x729829edff20>,
        <tomotree.Cell object at 0x729829edff50>,
        <tomotree.Cell object at 0x729829edff80>,
        <tomotree.Cell object at 0x729829edffb0>,
        <tomotree.Cell object at 0x729829efc980>,
        <tomotree.Cell object at 0x729829efc9b0>,
        <tomotree.Cell object at 0x729829efc9e0>,
        <tomotree.Cell object at 0x729829efca10>,
        <tomotree.Cell object at 0x729829efca40>,
        <tomotree.Cell object at 0x729829efca70>,
        <tomotree.Cell object at 0x729829efcaa0>,
        <tomotree.Cell object at 0x729829efcad0>,
        <tomotree.Cell object at 0x729829efcb00>], dtype=object),
 <tomotree.Ray at 0x72982a0731d0>: array([<tomotree.Cell object at 0x729829eb82c0>,
        <tomotree.Cell object at 0x729829eb82f0>,
        <tomotree.Cell object at 0x729829eb8320>,
        <tomotree.Cell object at 0x729829eb8350>,
        <tomotree.Cell object at 0x729829eb8380>,
        <tomotree.Cell object at 0x729829eb8dd0>,
        <tomotree.Cell object at 0x729829eb8e00>,
        <tomotree.Cell object at 0x729829eb8e30>,
        <tomotree.Cell object at 0x729829eb8e60>,
        <tomotree.Cell object at 0x729829eb8e90>,
        <tomotree.Cell object at 0x729829eb8ec0>,
        <tomotree.Cell object at 0x729829eb8ef0>,
        <tomotree.Cell object at 0x729829eb8f20>,
        <tomotree.Cell object at 0x729829eb8f50>,
        <tomotree.Cell object at 0x729829eb9940>,
        <tomotree.Cell object at 0x729829eb9970>,
        <tomotree.Cell object at 0x729829eb99a0>,
        <tomotree.Cell object at 0x729829eb99d0>,
        <tomotree.Cell object at 0x729829eb9a00>,
        <tomotree.Cell object at 0x729829eb9a30>,
        <tomotree.Cell object at 0x729829eb9a60>,
        <tomotree.Cell object at 0x729829eb9a90>,
        <tomotree.Cell object at 0x729829eb9ac0>,
        <tomotree.Cell object at 0x729829eb9af0>,
        <tomotree.Cell object at 0x729829eba4b0>,
        <tomotree.Cell object at 0x729829eba4e0>,
        <tomotree.Cell object at 0x729829eba510>,
        <tomotree.Cell object at 0x729829eba540>,
        <tomotree.Cell object at 0x729829eba570>,
        <tomotree.Cell object at 0x729829eba5a0>,
        <tomotree.Cell object at 0x729829eba5d0>,
        <tomotree.Cell object at 0x729829eba600>,
        <tomotree.Cell object at 0x729829eba630>,
        <tomotree.Cell object at 0x729829eba660>,
        <tomotree.Cell object at 0x729829ebb020>,
        <tomotree.Cell object at 0x729829ebb050>,
        <tomotree.Cell object at 0x729829ebb080>,
        <tomotree.Cell object at 0x729829ebb0b0>,
        <tomotree.Cell object at 0x729829ebb0e0>,
        <tomotree.Cell object at 0x729829ebb110>,
        <tomotree.Cell object at 0x729829ebb140>,
        <tomotree.Cell object at 0x729829ebb170>,
        <tomotree.Cell object at 0x729829ebb1a0>,
        <tomotree.Cell object at 0x729829ebb1d0>,
        <tomotree.Cell object at 0x729829ebbb90>,
        <tomotree.Cell object at 0x729829ebbbc0>,
        <tomotree.Cell object at 0x729829ebbbf0>,
        <tomotree.Cell object at 0x729829ebbc20>,
        <tomotree.Cell object at 0x729829ebbc50>,
        <tomotree.Cell object at 0x729829ebbc80>,
        <tomotree.Cell object at 0x729829ebbcb0>,
        <tomotree.Cell object at 0x729829ebbce0>,
        <tomotree.Cell object at 0x729829ebbd10>,
        <tomotree.Cell object at 0x729829ebbd40>,
        <tomotree.Cell object at 0x729829ebbd70>,
        <tomotree.Cell object at 0x729829edc740>,
        <tomotree.Cell object at 0x729829edc770>,
        <tomotree.Cell object at 0x729829edc7a0>,
        <tomotree.Cell object at 0x729829edc7d0>,
        <tomotree.Cell object at 0x729829edc800>,
        <tomotree.Cell object at 0x729829edc830>,
        <tomotree.Cell object at 0x729829edc860>,
        <tomotree.Cell object at 0x729829edc890>,
        <tomotree.Cell object at 0x729829edc8c0>,
        <tomotree.Cell object at 0x729829edc8f0>,
        <tomotree.Cell object at 0x729829edd2b0>,
        <tomotree.Cell object at 0x729829edd2e0>,
        <tomotree.Cell object at 0x729829edd310>,
        <tomotree.Cell object at 0x729829edd340>,
        <tomotree.Cell object at 0x729829edd370>,
        <tomotree.Cell object at 0x729829edd3a0>,
        <tomotree.Cell object at 0x729829edd3d0>,
        <tomotree.Cell object at 0x729829edd400>,
        <tomotree.Cell object at 0x729829edd430>,
        <tomotree.Cell object at 0x729829edd460>,
        <tomotree.Cell object at 0x72982a0286b0>,
        <tomotree.Cell object at 0x72982a028560>,
        <tomotree.Cell object at 0x72982a028590>,
        <tomotree.Cell object at 0x72982a0285c0>,
        <tomotree.Cell object at 0x72982a028470>,
        <tomotree.Cell object at 0x72982a0284a0>,
        <tomotree.Cell object at 0x72982a0284d0>,
        <tomotree.Cell object at 0x72982a15d730>,
        <tomotree.Cell object at 0x72982a15d760>,
        <tomotree.Cell object at 0x72982a15d790>,
        <tomotree.Cell object at 0x729829ede6c0>,
        <tomotree.Cell object at 0x729829ede6f0>,
        <tomotree.Cell object at 0x729829ede720>,
        <tomotree.Cell object at 0x729829ede750>,
        <tomotree.Cell object at 0x729829ede780>,
        <tomotree.Cell object at 0x729829ede7b0>,
        <tomotree.Cell object at 0x729829ede7e0>,
        <tomotree.Cell object at 0x729829ede810>,
        <tomotree.Cell object at 0x729829ede840>,
        <tomotree.Cell object at 0x729829edf230>,
        <tomotree.Cell object at 0x729829edf260>,
        <tomotree.Cell object at 0x729829edf290>,
        <tomotree.Cell object at 0x729829edf2c0>,
        <tomotree.Cell object at 0x729829edf2f0>,
        <tomotree.Cell object at 0x729829edf320>,
        <tomotree.Cell object at 0x729829edf350>,
        <tomotree.Cell object at 0x729829edf380>,
        <tomotree.Cell object at 0x729829edfda0>,
        <tomotree.Cell object at 0x729829edfdd0>,
        <tomotree.Cell object at 0x729829edfe00>,
        <tomotree.Cell object at 0x729829edfe30>,
        <tomotree.Cell object at 0x729829edfe60>,
        <tomotree.Cell object at 0x729829edfe90>,
        <tomotree.Cell object at 0x729829edfec0>], dtype=object)}
In [12]:
limits = t1.limit_cell_plot_velocities(4)
t1.plot(rays=False, **limits)
Out[12]:
<Axes: >
No description has been provided for this image

SIRT method¶

In [13]:
t2=tomo.Tomo(nodes=nodes, times=d.values, nx=31, ny=31)
t2.do_SIRT_method(speed_min=800, speed_max=1800)
Out[13]:
'SIRT finished in 513 ms.\nSpeed interval: min=800.0 for 10 segments, max=1800.0  for 2016 segments'
In [14]:
t2.plot(speed_min=800, speed_max=1800)
plt.suptitle("SIRT method")
Out[14]:
Text(0.5, 0.98, 'SIRT method')
No description has been provided for this image

ERSM method with tangential velocities fixed¶

In [15]:
t3=tomo.Tomo(nodes=nodes, times=d.values, nx=51, ny=51, symmetric=True)
t3.do_ERSM_method()
In [16]:
limits = t3.limit_cell_plot_velocities(4)
t3.plot(grid=True, rays=False, **limits)
plt.suptitle("ERSM method with fixed tangential velocity")
Out[16]:
Text(0.5, 0.98, 'ERSM method with fixed tangential velocity')
No description has been provided for this image

ERSM method¶

Do not fix nonradial velocity

In [17]:
t4=tomo.Tomo(nodes=nodes, times=d.values, nx=51, ny=51, symmetric=True)
t4.do_ERSM_method(fix_velocity_EBSI_function=lambda x, y: x )
In [18]:
t4.plot(speed_min=1400, speed_max=1600)
Out[18]:
<Axes: >
No description has been provided for this image
In [19]:
limits = t4.limit_cell_plot_velocities(4)
t4.plot(rays=False, **limits)
plt.suptitle("ERSM method, tangential velocity not fixed")
Out[19]:
Text(0.5, 0.98, 'ERSM method, tangential velocity not fixed')
No description has been provided for this image
In [ ]:
 
In [ ]: